Arrays.copyof 和 System.arraycopy区别

jdk里有两个复制数组的方法
一个是底层native的 System.arraycopy
一个Arrays里的一系列重写的copyof

二者有什么关系,我们应该用哪个呢?上段源码就明白了

public static <T,U> T[] copyOf(U[] original, int newLength, Class<? extends T[]> newType) {  
        T[] copy = ((Object)newType == (Object)Object[].class)  
            ? (T[]) new Object[newLength]  
            : (T[]) Array.newInstance(newType.getComponentType(), newLength);  
        System.arraycopy(original, 0, copy, 0,  
                         Math.min(original.length, newLength));  
        return copy;  
    }  


Arrays里的copyof是为我们做了数组元素类型转换的工作,底层封装了高效的System.arraycopy而已

你可能感兴趣的:(jdk)