gpt4 book ai didi

java - 为什么会抛出 ConcurrentModificationException 以及如何调试它

转载 作者:行者123 更新时间:2023-12-04 13:51:32 25 4
gpt4 key购买 nike

我正在使用 Collection (一个 HashMap 被 JPA 间接使用,它确实发生了),但显然代码随机抛出一个 ConcurrentModificationException .是什么原因造成的,我该如何解决这个问题?也许通过使用一些同步?

这是完整的堆栈跟踪:

Exception in thread "pool-1-thread-1" java.util.ConcurrentModificationException
at java.util.HashMap$HashIterator.nextEntry(Unknown Source)
at java.util.HashMap$ValueIterator.next(Unknown Source)
at org.hibernate.collection.AbstractPersistentCollection$IteratorProxy.next(AbstractPersistentCollection.java:555)
at org.hibernate.engine.Cascade.cascadeCollectionElements(Cascade.java:296)
at org.hibernate.engine.Cascade.cascadeCollection(Cascade.java:242)
at org.hibernate.engine.Cascade.cascadeAssociation(Cascade.java:219)
at org.hibernate.engine.Cascade.cascadeProperty(Cascade.java:169)
at org.hibernate.engine.Cascade.cascade(Cascade.java:130)

最佳答案

这不是同步问题。如果正在迭代的基础集合被迭代器本身以外的任何东西修改,就会发生这种情况。

Iterator it = map.entrySet().iterator();
while (it.hasNext()) {
Entry item = it.next();
map.remove(item.getKey());
}
这将抛出 ConcurrentModificationExceptionit.hasNext()被称为第二次。
正确的做法是
Iterator it = map.entrySet().iterator();
while (it.hasNext()) {
Entry item = it.next();
it.remove();
}
假设这个迭代器支持 remove()手术。

关于java - 为什么会抛出 ConcurrentModificationException 以及如何调试它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68990562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com