JAVA 数组复制的方法1、使用for循环遍历,效率最低int [] arr = {1,2,3,4,5,6,7,8}; int [] arr1 = new int [arr.length]; for (int i = 0; i <