我在使用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);
但问题只在于第二行。我不能添加它,它我是同一个对象的内部迭代器。 :(
答案 0 :(得分:5)
您可以保留第二个要添加的元素列表:
final Iterator<Transition> it = this.transitions.iterator();
final List<Transition> tmp = new ArrayList();//using a list will keep the order
while(it.hasNext()) {
final Transition object = it.next();
if(object.id == 3){
it.remove();
tmp.add(object);
}
}
this.transitions.addAll(tmp);