使用System.arraycopy()实现数组之间的复制
摘要:System提供了一个静态方法arraycopy(),我们可以使用它来实现数组之间的复制。其函数原型是: public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length) src:源数
阅读全文
posted @ 2017-06-22 13:53