我在使用 Iterator (LinkedList.iterator()) 对象的 Java 上遇到问题。在循环中,我需要将迭代器对象从某个位置移动到列表末尾。
例如:
final Iterator<Transition> it = this.transitions.iterator();
while(it.hasNext()) {
final Transition object = it.next();
if(object.id == 3){
// Move to end of this.transitions list
// without throw ConcurrentModificationException
}
}
由于某些原因,我无法克隆 this.transitions。有可能,还是我真的需要使用克隆方法?
编辑:目前,我这样做:
it.remove();
this.transitions.add(object);
但问题就在第二行。我不能添加itens,因为我是同一个对象的迭代器。:(