错误:
The method add(capture#1-of ?) in the type List<capture#1-of ?> is not
applicable for the arguments (String)
代码:
List<?> to = new ArrayList<Object>();
to.add(new String("here"));
既然List<?>
是泛型 List 并且因此可以是任何类型,那么为什么它在 add 方法中不接受 String 呢?