java.util.ConcurrentModificationException with iterator(带有迭代器的 java.util.ConcurrentModificationException)
问题描述
我知道是否会尝试通过简单的循环从集合中删除,我会得到这个异常: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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:带有迭代器的 java.util.ConcurrentModificationException
基础教程推荐
- 在java中使用xpath和selenium解析HTML表格数据 2022-01-01
- 在springboot中如何给mybatis加拦截器 2023-04-29
- JPA惰性列表上的流 2022-01-01
- Java ECDSAwithSHA256 签名长度不一致 2022-01-01
- doFilter()是在servlet的工作完成之前还是之后执行的? 2022-01-01
- 将 double 转换为 Int,向下舍入 2022-01-01
- Maven:无效的目标版本:10 2022-01-01
- 如何在相机中应用自定义滤镜 [Surfaceview 预览]. 2022-01-01
- 将 Windows 证书导入 Java 2022-01-01
- 控制台应用程序中的 Java 键盘输入解析 2022-01-01
