你可以尝试使用System.arraycopy()
int[] src = new int[]{1,2,3,4,5};int[] dest = new int[5];System.arraycopy( src, 0, dest, 0, src.length );
你可以尝试使用System.arraycopy()
int[] src = new int[]{1,2,3,4,5};int[] dest = new int[5];System.arraycopy( src, 0, dest, 0, src.length );