为数组所有元素赋相同的值 :
boolean[] resArray=new boolean[100]; Arrays.fill(resArray, true);
数组之间的复制:
System.arraycopy(Object src, int srcPos, Object dst, int dstPos, int length)
注意:src and dest都必须是同类型或者可以进行转换类型的数组. 有趣的是这个函数可以实现自己到自己复制,
比如: int[] fun ={0,1,2,3,4,5,6}; System.arraycopy(fun,0,fun,3,3); 则结果为:{0,1,2,0,1,2,6};
原文:http://blog.csdn.net/u011494050/article/details/38851561