本帖最后由 杜成龙 于 2013-9-20 08:49 编辑
在张老师的高新技术中的泛型中有讲到说下面这两行代码是正确的,编译时不会报错
Vector v1 = new Vector<String>();
Vector<Object> v = v1;
但为什么在在下面这段代码中会出现错误呢?
public class GenericTest {
public static void main(String[] args)throws Exception {
ArrayList<Integer> arrayList=new ArrayList<Integer>();
printCollection(arrayList);
}
public static void printCollection(Collection<Object> collection)
{
}
}
我把arrayList传到方法printCollection()中时就会报错,这是为什么呢,还望大家指教,谢谢!
|