数组复制 System.arraycopy 与 Arrays.copyof()
import java.util.Arrays; public class Task_Aarryscopyof { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int a[]=new int[]{1,2,3,5}; int b[]=Arrays.copyOf(a, 6); System.out.println("数组为"); for(int c:b){ System.out.print(c+"\t"); } } }
Arrays.copyof(被复制的数组,新数组的长度) 返回一个新数组;
System.arraycopy(a, 0, b, 0, a.length);//数组复制 arraycopy(被复制的数组;起始复制的下标;要复制到的数组;从第几个元素开始粘贴;需要复制的元素个数);