1、不得在超类中使用通配符,例如
public class PojoModelTree extends IdentifiableTree
错误信息如下:
The type PojoModelTree cannot extend or implement IdentifiableTree
. A
supertype may not specify any wildcard
2、只有 ,没有
正确用法:TreeNode getTree()
错误用法 E getParent();
3、函数返回值类型不应使用通配符:
错误用法:TreeNode getChildNode(String pKey)
这种用法本身无错,但在赋返回值给其它变量时会报类型不匹配。
正确用法: TreeNode getChildNode(String pKey)
4、带通配符的泛型集合不能使用add方法。不带通配符的泛型集合也可接收子类元素。
错误用法:
List
list1 = new ArrayList
();
list1.add(new Integer(11)); // 类型不匹配。
第二行报错为:
The method add(capture#1-of ? extends Number) in the type List Number> is not applicable for the arguments (Integer)
正确用法:
List
list1 = new ArrayList
();
list1.add(new Integer(11));
显然,在泛型的检查之下,仍可向集合中添加指定泛型的子类元素。以下代码也是合法的:
List
list1 = new ArrayList
();
list1.add(new Integer(11));
List
list2 = new ArrayList
();
list2.add(33);
list2.add(44);
list1.addAll(list2);
但是,如果写list1=list2就不合法了。