将迭代器上的当前对象移动到列表末尾

发布于 2024-11-09 06:58:46 字数 623 浏览 0 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蝶…霜飞 2024-11-16 06:58:46

您可以保留要添加的第二个元素列表:

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);

you can keep a second list of elements to be added:

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);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文