Eclipse 3.1 M4 关于Generics的Bug

2008-02-23 10:11:48来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

我使用 Eclipse 3.1M4 进行如下编码时:

class Test implements Iterator<Integer> {
public boolean hasNext() { return false; } public Integer next() { return null; } public void remove() {}
}

问题出现在 next() 方法,上面显示编译器警告:

Type safety: The return type Integer of the method next() of type Test needs unchecked conversion to conform to the return type E of inherited method

这是一个Eclipse的Bug

上一篇: Java网络编程的学习笔记(二)
下一篇: JDK1.5 最新特性

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Hibernate性能测试(load10000条记录的简单测试 仅供参考)

下一篇:基于 J2EE 体系实现多层结构 Blog 平台