fastest way to copy an array in java code example
Example 1: copy array in java
int[] src = new int[]{1,2,3,4,5};
int[] dest = new int[5];
System.arraycopy( src, 0, dest, 0, src.length );
Example 2: how to copy array in java
// method
public static int [] copyArray(int [] arr){
int [] copyArr = new int[arr.length];
for (int i = 0; i < copyArr.length; i++){
copyArr[i] = arr[i];
}
return copyArr;
}
// Arrays. method
int[] copyCat = Arrays.copyOf(arr, arr.length);
// System
System.arraycopy(x,0,y,0,5); // 5 is array's length
// clone
y = x.clone();