问题描述
我知道是否会尝试通过简单的循环从集合中删除,我会得到这个异常:java.util.ConcurrentModificationException.但我正在使用迭代器,它仍然会产生这个异常.知道为什么以及如何解决它吗?
I know if would be trying to remove from collection looping through it with the simple loop I will be getting this exception: java.util.ConcurrentModificationException. But I am using Iterator and it still generates me this exception. Any idea why and how to solve it?
HashSet<TableRecord> tableRecords = new HashSet<>();
...
for (Iterator<TableRecord> iterator = tableRecords.iterator(); iterator.hasNext(); ) {
TableRecord record = iterator.next();
if (record.getDependency() == null) {
for (Iterator<TableRecord> dependencyIt = tableRecords.iterator(); dependencyIt.hasNext(); ) {
TableRecord dependency = dependencyIt.next(); //Here is the line which throws this exception
if (dependency.getDependency() != null && dependency.getDependency().getId().equals(record.getId())) {
tableRecords.remove(record);
}
}
}
}
推荐答案
你必须使用 iterator.remove() 而不是 tableRecords.remove()
You must use iterator.remove() instead of tableRecords.remove()
只有在迭代器中使用 remove 方法时,才能删除要迭代的列表中的项目.
You can remove items on a list on which you iterate only if you use the remove method from the iterator.
当您创建迭代器时,它会开始计算应用于集合的修改.如果迭代器检测到一些修改没有使用它的方法(或者在同一个集合上使用另一个迭代器),它不能再保证它不会在同一个元素上传递两次或跳过一个,所以它抛出这个异常
When you create an iterator, it starts to count the modifications that were applied on the collection. If the iterator detects that some modifications were made without using its method (or using another iterator on the same collection), it cannot guarantee anymore that it will not pass twice on the same element or skip one, so it throws this exception
这意味着您需要更改代码,以便仅通过 iterator.remove 删除项目(并且只有一个迭代器)
It means that you need to change your code so that you only remove items via iterator.remove (and with only one iterator)
或
列出要删除的项目,然后在完成迭代后将其删除.
make a list of items to remove then remove them after you finished iterating.
这篇关于带有迭代器的 java.util.ConcurrentModificationException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)