Java-Java中System.arraycopy() 和 Arrays.copyOf()两者之间的区别
如果我们想拷贝一个数组,我们可能会使用System.arraycopy()或者Arrays.copyof()两种方式。在这里,我们将使用一个比较简单的示例来阐述两者之间的区别。1、示例代码:System.arraycopy()int[]arr={1,2,3,4,5};int[]copied=newint[10];System.arraycopy(arr,0,copied,1,5);//5isthe