泛型使用小结

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就不合法了。

Technorati : ,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值