Java如何在List或Map遍历过程中删除元素
遍历删除list或map中的元素有很多种方法,当运用不当的时候就会产生问题。下面通过这篇文章来再学习学习吧。
一、list遍历过程中删除元素
使用索引下标遍历的方式
示例:删除列表中的2
public static void main(string[] args) { list<integer> list = new arraylist<integer>(); list.add(1); list.add(2); list.add(2); list.add(3); list.add(4); for (int i = 0; i < list.size(); i++) { if(2 == list.get(i)){ list.remove(i); } system.out.println(list.get(i)); } system.out.println("list=" + list.tostring()); }
输出结果:
1 2 3 4 list=[1, 2, 3, 4]
问题:
结果显示只删除了一个2,另一个2被遗漏了,原因是:删除了第一个2后,集合里的元素个数减1,后面的元素往前移了1位,导致了第二个2被遗漏了。
使用for循环遍历的方式
示例:
public static void listiterator2(){ list<integer> list = new arraylist<integer>(); list.add(1); list.add(2); list.add(2); list.add(3); list.add(4); for (int value : list) { if(2 == value){ list.remove(value); } system.out.println(value); } system.out.println("list=" + list.tostring()); }
结果:
exception in thread "main" 1 2 java.util.concurrentmodificationexception at java.util.arraylist$itr.checkforcomodification(unknown source) at java.util.arraylist$itr.next(unknown source) at test.listiterator.listiterator2(listiterator.java:39) at test.listiterator.main(listiterator.java:10)
说明:
jdk中对concurrentmodificationexception的描述:
public class concurrentmodificationexception extends
runtimeexception当方法检测到对象的并发修改,但不允许这种修改时,抛出此异常。
例如,某个线程在 collection 上进行迭代时,通常不允许另一个线性修改该 collection。通常在这些情况下,迭代的结果是不确定的。如果检测到这种行为,一些迭代器实现(包括 jre 提供的所有通用 collection 实现)可能选择抛出此异常。执行该操作的迭代器称为快速失败 迭代器,因为迭代器很快就完全失败,而不会冒着在将来某个时间任意发生不确定行为的风险。
注意:此异常不会始终指出对象已经由不同 线程并发修改。如果单线程发出违反对象协定的方法调用序列,则该对象可能抛出此异常。例如,如果线程使用快速失败迭代器在 collection 上迭代时直接修改该 collection,则迭代器将抛出此异常。
注意:迭代器的快速失败行为无法得到保证,因为一般来说,不可能对是否出现不同步并发修改做出任何硬性保证。快速失败操作会尽最大努力抛出 concurrentmodificationexception
。因此,为提高此类操作的正确性而编写一个依赖于此异常的程序是错误的做法,正确做法是:concurrentmodificationexception
应该仅用于检测 bug。
java中的for each实际上使用的是iterator进行处理的。而iterator是不允许集合在iterator使用期间删除的。所以导致了iterator抛出了concurrentmodificationexception
。
正确的方式
示例:
public static void listiterator3(){ list<integer> list = new arraylist<integer>(); list.add(1); list.add(2); list.add(2); list.add(3); list.add(4); iterator<integer> it = list.iterator(); while (it.hasnext()){ integer value = it.next(); if (2 == value) { it.remove(); } system.out.println(value); } system.out.println("list=" + list.tostring()); }
结果:
1 2 2 3 4 list=[1, 3, 4]
二、map遍历过程中删除元素
正确做法的示例:
public static void main(string[] args) { hashmap<string, string> map = new hashmap<string, string>(); map.put("1", "test1"); map.put("2", "test2"); map.put("3", "test3"); map.put("4", "test4"); //完整遍历map for (entry<string, string> entry : map.entryset()) { system.out.printf("key: %s value:%s\r\n", entry.getkey(), entry.getvalue()); } //删除元素 iterator<map.entry<string, string>> it = map.entryset().iterator(); while(it.hasnext()) { map.entry<string, string> entry= it.next(); string key= entry.getkey(); int k = integer.parseint(key); if(k%2==1) { system.out.printf("delete key:%s value:%s\r\n", key, entry.getvalue()); it.remove(); } } //完整遍历map for (entry<string, string> entry : map.entryset()) { system.out.printf("key: %s value:%s\r\n", entry.getkey(), entry.getvalue()); } }
结果:
key: 1 value:test1 key: 2 value:test2 key: 3 value:test3 key: 4 value:test4 delete key:1 value:test1 delete key:3 value:test3 key: 2 value:test2 key: 4 value:test4
注意
但对于iterator的remove()
方法,也有需要我们注意的地方:
每调用一次iterator.next()
方法,只能调用一次remove()
方法。
调用remove()
方法前,必须调用过一次next()
方法。
jdk-api中对于remove()方法的描述:
void remove()
从迭代器指向的集合中移除迭代器返回的最后一个元素(可选操作)。每次调用 next 只能调用一次此方法。如果进行迭代时用调用此方法之外的其他方式修改了该迭代器所指向的集合,则迭代器的行为是不明确的。
抛出:unsupportedoperationexception
- 如果迭代器不支持 remove
操作。illegalstateexception
- 如果尚未调用 next
方法,或者在上一次调用 next
方法之后已经调用了remove
方法。
总结
以上就是关于list与map的遍历过程中删除元素的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。
上一篇: 【人脸识别】提取68维特征值与正脸操作
下一篇: java网上图书商城(1)User模块