Possible Duplicate:
Make copy of array Java
I have a main method call of c3 = c1.replicate();
c1 = new Chromosome(new int[] {1, 2, 3, 4, 5, 6})
I am trying really hard to create a replicate method in java that will copy c1
and attach it to the c3 = call
.
Any help would be awesome!