Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been facing this problem for a while now and it is really starting to frustrate me.

I have an array A which is constantly being updated. Lets say A = [1,2,3,4,5]. I need to make an exact duplicate copy of A and call it B. If A were to change to [6,7,8,9,10], B should still be [1,2,3,4,5]. What is the best way to do this? I tried a for loop like:

for(int i=0; i<5; i++){
   B[i]=A[i]
}

but that doesn't seem to be working correctly? Please help? And please don't use advanced terms like deep copy etc because I do not know what that means.

Thanks

share|improve this question
2  
how are you initializing A and B? – Hristo Apr 26 '11 at 4:01
30  
"And please don't use advanced terms like deep copy etc because I do not know what that means." - Well isn't it about time you learned?? – Stephen C Apr 26 '11 at 4:18

4 Answers

You can try using System.arraycopy()

int[] a = new int[]{1,2,3,4,5};
int[] b = new int[5];

System.arraycopy( a, 0, b, 0, a.length );
share|improve this answer
12  
+1 for not reinventing the wheel... – squawknull Apr 26 '11 at 4:10
+1 for not reiventing the wheel. And as far as I know it, this solution is the faster you can get in array copying. – Felipe Hummel Apr 26 '11 at 4:22
both clone and arraycopy are native. I'd expect clone to be marginally faster. not that the difference matters. – MeBigFatGuy Apr 26 '11 at 4:33
1  
@Felipe, @MeBigFatGuy - only for a large array. For a small array, a copy loop may be faster because of the setup overheads. If you look at the javadoc for System.arraycopy, you'll see that the method needs to check various things before it starts. Some of these checks are unnecessary with a copy loop, depending on the static array types. – Stephen C Apr 26 '11 at 4:34
@Stephen C, hmmm, but with a copy loop every element load and store needs to do bounds checking. This is just a one time check with System.arraycopy. – MeBigFatGuy Apr 26 '11 at 4:40
show 3 more comments

you can use

int[] a = new int[]{1,2,3,4,5};
int[] b = (int[])a.clone();

as well.

share|improve this answer
I'm just clearing the OP's point that: "If A were to change to [6,7,8,9,10], B should still be [1,2,3,4,5]". OP said he tried using loop but doesn't worked for him. – Harry Joy Apr 26 '11 at 4:17
3  
The cast is unnecessary; a good static analyzer will warn about it. But cloning is definitely the best way to make a new copy of an array. – erickson Apr 26 '11 at 4:23
1  
@MeBigFatGuy - the OP's use-case entails repeated copying to the same array, so clone doesn't work. – Stephen C Apr 26 '11 at 4:36
1  
@Stephen C, i didn't read that. I just read he wants a copy, and will then subsequently be repeatedly updating the non-stashed version. – MeBigFatGuy Apr 26 '11 at 4:41
1  
@MeBigFatGuy - he said "I have an array A which is constantly being updated.". Maybe I'm reading too much into that, but I take this as implying that he is repeatedly copying A to B as well. – Stephen C Apr 26 '11 at 4:54
show 2 more comments

If

int[] a = {1,2,3,4,5};

then

int[] b = Arrays.copyOf(a, a.length);
share|improve this answer

I have a feeling that all of these "better ways to copy an array" are not really going to solve your problem.

You say

I tried a for loop like [...] but that doesn't seem to be working correctly?

Looking at that loop, there's no obvious reason for it not to work ... unless:

  • you somehow have the a and b arrays messed up (e.g. a and b refer to the same array), or
  • you're application is multi-threaded and different threads are reading and updating the a array simultaneously.

In either case, alternative ways of doing the copying won't solve the underlying problem.

The fix for the first scenario is obvious. For the second scenario you will have to figure out some way of synchronizing the threads. Atomic array classes don't help because they have no atomic copy constructors or clone methods, but synchronizing using a primitive mutex will do the trick.

(There are hints in your question that lead me to think that this is indeed thread related; e.g. your statement that a is constantly changing.)

share|improve this answer
agreed .. probably true. – MeBigFatGuy Apr 26 '11 at 5:04

protected by Community Feb 4 at 3:43

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.