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 oth
Arrays.copyOf() creates a new copy of an existing array (optionally with a different length).