int a[] = { 1, 8, 3 };
// Copying elements of a[] to b[]
int b[] = a.clone()
public static int[] copyOf(int[] original, int newLength)
public static void arraycopy(Object src, int srcPos, Object dest,
int destPos, int length)