Right now, I have an array of Point objects and I want to make a COPY of that array.
I have tried following ways:
1) Point[] temp = mypointarray;
2) Point[] temp = (Point[]) mypointarray.clone();
3)
Point[] temp = new Point[mypointarray.length];
System.arraycopy(mypointarray, 0, temp, 0, mypointarray.length);
But all of those ways turn out to be that only a reference of mypointarray is created for temp, not a copy.
For example, when I changed the x coordinate of mypointarray[0] to 1 (the original value is 0), the x coordinate of temp[0] is changed to 1 too (I swear I didn't touch temp).
So is there any ways to make an copy of Point array?
Thanks