I tried to make an independent copy of an array but couldnt get one. see i cannot copy it integer by integer using a for loop because of efficiency reasons. Is there any other way? This was my code:
int[] temp = new int[arr.length];
temp = arr;
|
I tried to make an independent copy of an array but couldnt get one. see i cannot copy it integer by integer using a for loop because of efficiency reasons. Is there any other way? This was my code:
|
|||||||
|
|
Look at
|
||||
|
|
|
|
|||||||
|
|
Check out System.arraycopy(). It can copy arrays of any type and is a preffered(and optimized) way to copy arrays. |
||||
|
|
|
Try using
But arrayCopy is much faster. Sample performance test on array of 3,000,000 elements:
|
|||||||
|
|
You can use System.arraycopy, but I doubt it will be much more efficient. The memory has to be copied anyways, so the only optimization possible is to copy bigger chunks of memory at once. But the size of a memory chunk copied at once is strongly limited by the processor/system-architecture. |
|||
|