Java 复制数组
1、arraycopy方法char [] a = {'a','e','i','o','u'},b = {'e','r','t','y','u','e'};int [] c = {1,2,3,4,5} , d = {10,20,30,40,50,60};System.arraycopy(a,0,b,0,a.length);System.arraycopy(c,0,d,1,5);System.out.println(b);for(int i = 0;i < d.length; i++)