Shallow copy int[] src = {1,2,3,4,5}; int[] dst = Arrays.copyOf(src, src.length); // Deep copy int[] dst2 = new int[src.length]; for(int i = 0; ...
確定! 回上一頁