我想为一个运行良好的泛型类创建一个迭代器。我认为迭代器会尝试使用泛型类的 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());
}
}
}