摘要: 源自JDK int[] a = {1,2,3,4};// copyOf(T[] original, int newLength)a = Arrays.copyOf(a, 8); 另附: 复制+转型 (Array.newInstance) public static <T,U> T[] copyOf( 阅读全文
posted @ 2020-10-29 19:33 Numerz 阅读(69) 评论(0) 推荐(0) 编辑