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
Check out System.arraycopy(). It can copy arrays of any type and is a preffered(and optimized) way to copy arrays.