0

我想为一个运行良好的泛型类创建一个迭代器。我认为迭代器会尝试使用泛型类的 TypeParameter 进行迭代,但显然情况并非如此,因为 Eclipse 告诉我需要一个 Object。

如果有人知道我做错了什么,我会很高兴。

public class GenericClass<T extends OtherClass> implements Comparable, Iterable
{
    private ArrayList<T> list = new ArrayList<T>();
    [...]
    @Override
    public Iterator<T> iterator()
    {
    Iterator<T> iter = list .iterator();
    return iter;
}
    [...]
}



public class Main
{
public static void main(String[] args)
{
    GenericClass<InstanceOfOtherClass> gen = new GenericClass<InstanceOfOtherClass>("Aius");

    for(InstanceOfOtherClass listElement : gen) // This is the problem line; gen is underlined and listElement is expected to be an Object
    {
        System.out.println(listElement.getName());
    }

}

}
4

2 回答 2

8
implements Comparable, Iterable

您需要指定基本接口的通用参数。
否则,您将Iterable非泛型实现,类型参数将变为Object.

于 2013-06-07T16:27:59.197 回答
0

如果你想让你的类像这样通用,GenericClass<T extends OtherClass>那么你应该实现Comparable<T>and Iterable<T>,这T两种情况下的T声明都是一样的GenericClass

这样,当您按如下方式进行泛型类型实例化时 -

 GenericClass<InstanceOfOtherClass> //...

效果将是它正在实现Comparable<InstanceOfOtherClass>and Iterable<InstanceOfOtherClass>,这使得方法签名匹配。

于 2013-06-07T16:40:09.120 回答