def array1 = $arrays.arrayOf($plugins.loadClass("java.lang.Object"), $arrays.arrayOf($plugins.loadClass("java.lang.Integer"), 1, 2), $arrays.arrayOf($plugins.loadClass("java.lang.Integer"), 3, 4)) def array2 = $arrays.arrayOf($plugins.loadClass("java.lang.Object"), $arrays.arrayOf($plugins.loadClass("java.lang.Integer"), 1, 2), $arrays.arrayOf($plugins.loadClass("java.lang.Integer"), 3, 4)) def array3 = $arrays.arrayOf($plugins.loadClass("java.lang.Object"), $arrays.arrayOf($plugins.loadClass("java.lang.Integer"), 1, 2), $arrays.arrayOf($plugins.loadClass("java.lang.Integer"), 3, 5)) def aw1 = $objectWrappers.wrap(array1) def aw2 = $objectWrappers.wrap(array2) def aw3 = $objectWrappers.wrap(array3) $console.log("array1 的内容深度字符串表示形式:", aw1.contentDeepToString()) $console.log("array2 的内容深度字符串表示形式:", aw2.contentDeepToString()) $console.log("array3 的内容深度字符串表示形式:", aw3.contentDeepToString())