how to make a copy of an array java code example

Example 1: java array copy

// Shallow copy
int[] src = {1,2,3,4,5};
int[] dst = Arrays.copyOf(src, src.length);

// Deep copy
int[] dst2 = new int[src.length];
for(int i = 0; i < src.length; i++){
	dst2[i] = src[i];
}

Example 2: how to make a copy of an array java

int a[] = {1, 8, 3}; 
  
// Copy elements of a[] to b[] 
int b[] = a.clone();

Example 3: java copy array

int[] a = {1, 2, 3};      
int[] b = a.clone();

Example 4: 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 );

Tags:

Misc Example