local numbers1 = _objectWrappers:wrap(_arrays:arrayOf(_plugins:loadClass("java.lang.Integer"), 1, 2, 3)) local numbers2 = _iterables:mutableListOf(4, 5, 6) -- 将两个数组合并成一个新数组,合并后的数组: [1, 2, 3, 4, 5, 6] numbers1:plus(numbers2):forEach(function(it) _console:log(it) end)