Java 中是否有公认的在迭代列表时删除列表元素的最佳实践?
我发现在执行此操作时避免 ConcurrentModificationException
的最佳方法存在相互矛盾的建议:
List<Apple> Apples = appleCart.getApples();
for (Apple apple : Apples)
{
delete(apple);
}
我倾向于使用 Iterator
代替 List
code> 并调用其 remove
方法。
这在这里最有意义吗?
I'm finding conflicting advice over the best way to avoid a ConcurrentModificationException
while doing this:
List<Apple> Apples = appleCart.getApples();
for (Apple apple : Apples)
{
delete(apple);
}
I'm leaning towards using an Iterator
in place of a List
and calling its remove
method.
Does that make the most sense here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
是的,使用迭代器。然后你可以使用它的删除方法。
Yes, use an Iterator. Then you could use its remove method.
如果您收到 ConcurrentModificationException,则您可能有多个线程。
因此,完整的答案包括使用 Iterator.remove() 和同步对集合的访问。
例如(其中lock由可能修改列表的所有线程同步):
If you're getting a ConcurrentModificationException, you likely have multiple threads.
So the full answer includes both using Iterator.remove() and synchronizing access to the collection.
For example (where lock is synchronized on by all threads that may modify the list):
您可以保留要删除的项目列表,然后在循环后删除它们:
You could keep a list of items to remove and then remove them after the loop:
从 Java 8 开始,您现在可以执行以下操作:
<代码>
apples.removeIf(苹果 -> apple.equals(this))
Since Java 8 you can now do this:
apples.removeIf(apple -> apple.equals(this))