Java 泛型

面试里面泛型被问的很多,但是回答的时候,除了说在集合类里面使用泛型以外,好像也不知道该说点啥了

看完 effective java,觉得还是有点东西说的,

1 先看一个编译错误 

   Cannot perform instanceof check against parameterized type Set<Integer>. Use the form Set<?> instead since further generic type information will be erased at runtime

  erased at runtime 这个是啥意思呢? 就是JDK在引入泛型时候,为了兼容1.5以前的版本,Set<Integer>其实是跟Set一个类型的,也就是说Set<Integer>和Set<String>在运行时是一种类型,会被消除类型,只是在编译时候的强类型检查.


2 泛型方法

arraylist里面的一个泛型方法

    @SuppressWarnings("unchecked")
    public <T> T[] toArray(T[] a) {
        if (a.length < size)
            // Make a new array of a's runtime type, but my contents:
            return (T[]) Arrays.copyOf(elementData, size, a.getClass());
        System.arraycopy(elementData, 0, a, 0, size);
        if (a.length > size)
            a[size] = null;
        return a;
    }


toarray只能返回object[]类型的,而如果需要特定类型的array,那么就需要使用泛型方法.运行时无法知道T的类型,但是通过的a的class通过反射就可以实例化T的类型了




郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。