When copying an entire array, I've often seen people write:
int[] dest = new int[orig.length];
System.arraycopy(orig, 0, dest, 0, orig.length);
But it seems to me there is no reason to favor this over:
int[] dest = orig.clone();
They're both shallow copies anyway. Probably these folks just don't realize that clone exists. So is there any reason not to use clone?
System.arraycopycopies each element fromorigtodest, which then is a deep copy, not shallow. – Joonas Pulakka Aug 24 '11 at 17:08dest[0]refer to the same object asorig[0]. So iforig[0]is an array,dest[0]will contain the exact same array instance; it will not clone the sub-array. This is not a deep copy. Is this not correct? – Neil Traft Aug 24 '11 at 17:13intprimitives. Thendest[0]gets the value thatorig[0]had at the time of copying. Iforig[0]'s value changes after that, it doesn't affectdest[0]'s value any more. If the value is an object reference (as would be in anObject[]array (whose elements could be e.g.int[]arrays), then the object may of course mutate. – Joonas Pulakka Aug 24 '11 at 17:15arraycopyis no "deeper" thanclone, whatever your meaning of deep/shallow might be. – Neil Traft Aug 24 '11 at 17:21