将迭代器上的当前对象移动到列表末尾
我在使用 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,因为我是同一对象的内部迭代器。 :(
I'm having a problem on Java using Iterator (LinkedList.iterator()) object. In a looping, I need move a iterator object from some place to end of list.
For instance:
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
}
}
I can't clone this.transitions for some reasons. It's possible, or I really need use the clone method?
Edit: currently, I do it:
it.remove();
this.transitions.add(object);
But the problem is just on this second line. I can't add itens, it I'm inner an iterator of the same object. :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以保留要添加的第二个元素列表:
you can keep a second list of elements to be added: