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);
No. If you're really microbenchmarking, then maybe, depending on what JVM you're running. But in actuality, no.