我的问题是:我有一个迭代器类,它应该遍历给定数据结构中的元素,<E>
比方说,但我设法完成的是,当我传入数据结构时,它将迭代数据结构本身。
IE。DynamicIterator it = new DynamicIterator(da);
说 da 是一个数组,输出将是 [1,2,3,4,5,6] 而不是 1,2,3,4,5,6
我的问题是,最重要的是,理解处理这个问题的普遍接受的做法,而不是问题本身。
编辑代码:
public class X<E>
{
private final E[] rray;
private int currentIndex = 0;
public X(E... a)
{
//if the incoming array is null, don't start
if(a == null)
{
System.out.println("Array is null");
System.exit(1);
}
//set the temp array (rray) to the incoming array (a)
this.rray = a;
}
//hasNext element?
public boolean hasNext()
{
return rray.length > currentIndex;
}
//next element (depends on hasNext())
public E next()
{
if (!hasNext())
{
System.out.println("Element doesn't exist, done");
System.exit(1);
}
return rray[currentIndex++];
}
//return array
public E[] access()
{
return rray;
}
}