1.System.arraycopy();复制数组,比直接for循环复制要快很多.很多JAVA集合(如List)都会用到此方法扩展容量,性能很高。int[]i1=newint[]{1,2,3,4,5,6,7,8,9,10};int[]i2=newint[10];Arrays.fill(i2,33);//System.arraycopy(资源数组,资源数组位置,目标数组,目标数组位置,复制长度);//目标数组会改变System.arraycopy(i1,3,i2,3,5);System.out...
查看全文