避免list中remove导致ConcurrentModificationException

简介: 避免list中remove导致ConcurrentModificationException

凡不是就着泪水吃过面包的人是不懂得人生之味的人——歌德

我们在list循环中调用remove函数删除自身元素可能会导致java.util.ConcurrentModificationException

例如

1
2
3
4
// 构造从0到20的list
List<Integer> list = Stream.iterate(0, i -> ++i).limit(20).collect(Collectors.toList());
// 删除
list.forEach(list::remove);

首先我们可以使用removeIf代替

1
list.removeIf(i -> i.equals(i));

其次我们可以使用迭代器

我们可以看到removeIf的源码正是使用了迭代器

如下

1
2
3
4
5
Iterator<Integer> iterator = list.iterator();
while (iterator.hasNext()) {
IntegernowNumber= iterator.next();
    iterator.remove();
}

在无法使用removeIf的场景下即可使用Iterator下的remove()方法

相关文章
Leetcode 19.Remove Nth Node From End of List
删除单链表中的倒数第n个节点,链表中删除节点很简单,但这道题你得先知道要删除哪个节点。在我的解法中,我先采用计数的方式来确定删除第几个节点。另外我在头节点之前额外加了一个节点,这样是为了把删除头节点的特殊情况转换为一般情况,代码如下。
43 0
|
8月前
使用List中的remove方法遇到数组越界
使用List中的remove方法遇到数组越界
108 2
|
8月前
List中的remove方法遇到报错不能删除以及四种解决办法点赞收藏
List中的remove方法遇到报错不能删除以及四种解决办法点赞收藏
279 0
for-each或迭代器中调用List的remove方法会抛出ConcurrentModificationException的原因
for-each循环遍历的实质是迭代器,使用迭代器的remove方法前必须调用一下next()方法,并且调用一次next()方法后是不允许多次调用remove方法的,为什么呢?接下来一起来看吧
81 0
List的remove操作一定要小心!
List的remove操作一定要小心!
LeetCode 203. Remove Linked List Elements
删除链表中等于给定值 val 的所有节点。
80 0
LeetCode 203. Remove Linked List Elements
LeetCode 82. Remove Duplicates from Sorted List II
给定已排序的链接列表,删除所有具有重复数字的节点,只留下原始列表中的不同数字。
104 0
LeetCode 82. Remove Duplicates from Sorted List II
LeetCode 19. 删除链表的倒数第N个节点 Remove Nth Node From End of List
LeetCode 19. 删除链表的倒数第N个节点 Remove Nth Node From End of List
|
7月前
|
安全 Java
java线程之List集合并发安全问题及解决方案
java线程之List集合并发安全问题及解决方案
1063 1
|
6月前
|
Java API Apache
怎么在在 Java 中对List进行分区
本文介绍了如何将列表拆分为给定大小的子列表。尽管标准Java集合API未直接支持此功能,但Guava和Apache Commons Collections提供了相关API。