copy array to another starting at an index java code example
Example 1: 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 2: java copy array
int[] a = {1, 2, 3};
int[] b = a.clone();