标签: java generics supertype
此代码无法编译吗? 是OCP的书。
List<? super IOException> list = new ArrayList<Exception>(); list.add(new Exception()); // does not compile list.add(new IOException()); list.add(new FileNotFoundException());