- 浏览: 174919 次
- 性别:
- 来自: 北京
最新评论
-
chainhou:
sunshineman 写道maven 编译不过啊,连不上ec ...
jetty的下载,编译,安装等 -
sunshineman:
maven 编译不过啊,连不上eclipse的proxy
jetty的下载,编译,安装等
java中出现的ConcurrentModificationException产生原因,解决方式及其它
- 博客分类:
- 常见问题
JAVA开发中有时会出现ConcurrentModificationException,该异常是由于在遍历Collection的时候做了删除或者增加的操作,此时原来统计的size和新的size并不一致,产生了该异常。下面是stackOverflow上的解释:
Here's why: As it is says in the Javadoc:
The iterators returned by this class's iterator and listIterator methods are fail-fast: if the list is structurally modified at any time after the iterator is created, in any way except through the iterator's own remove or add methods, the iterator will throw a ConcurrentModificationException.
This check is done in the next() method of the iterator (as you can see by the stacktrace). But we will reach the next() method only if hasNext() delivered true, which is what is called by the for each to check if the boundary is met. In your remove method, when hasNext() checks if it needs to return another element, it will see that it returned two elements, and now after one element was removed the list only contains two elements. So all is peachy and we are done with iterating. The check for concurrent modifications does not occur, as this is done in the next() method which is never called.
Next we get to the second loop. After we remove the second number the hasNext method will check again if can return more values. It has returned two values already, but the list now only contains one. But the code here is:
public boolean hasNext() {
return cursor != size();
}
1 != 2, so we continue to the next() method, which now realizes that someone has been messing with the list and fires the exception.
Hope that clears your question up.
要解决该问题,网上也有不少文章。大都谈的是在一个线程中遍历Collection,同时进行删除操作,建议是使用Iterator#remove()方法,而不是其remove(Obj)方法。但如果是多线程的情况下,即使一个线程中使用了Iterator#remove()方法改变了某个Collection,而另一个线程正在遍历该Collection,还是会产生相同的问题。
所以解决办法是需要给两个线程中使用到该Collection的地方都加锁,可以锁定Collection,或者锁定包含Collection的类。
而解决在遍历时会增加的情况,可以将List改为CopyOnWriteArrayList,Map改为相应的同步版本ConcurrentHashMap 即可。
引用
Here's why: As it is says in the Javadoc:
The iterators returned by this class's iterator and listIterator methods are fail-fast: if the list is structurally modified at any time after the iterator is created, in any way except through the iterator's own remove or add methods, the iterator will throw a ConcurrentModificationException.
This check is done in the next() method of the iterator (as you can see by the stacktrace). But we will reach the next() method only if hasNext() delivered true, which is what is called by the for each to check if the boundary is met. In your remove method, when hasNext() checks if it needs to return another element, it will see that it returned two elements, and now after one element was removed the list only contains two elements. So all is peachy and we are done with iterating. The check for concurrent modifications does not occur, as this is done in the next() method which is never called.
Next we get to the second loop. After we remove the second number the hasNext method will check again if can return more values. It has returned two values already, but the list now only contains one. But the code here is:
public boolean hasNext() {
return cursor != size();
}
1 != 2, so we continue to the next() method, which now realizes that someone has been messing with the list and fires the exception.
Hope that clears your question up.
要解决该问题,网上也有不少文章。大都谈的是在一个线程中遍历Collection,同时进行删除操作,建议是使用Iterator#remove()方法,而不是其remove(Obj)方法。但如果是多线程的情况下,即使一个线程中使用了Iterator#remove()方法改变了某个Collection,而另一个线程正在遍历该Collection,还是会产生相同的问题。
所以解决办法是需要给两个线程中使用到该Collection的地方都加锁,可以锁定Collection,或者锁定包含Collection的类。
而解决在遍历时会增加的情况,可以将List改为CopyOnWriteArrayList,Map改为相应的同步版本ConcurrentHashMap 即可。
发表评论
-
java
2014-05-26 17:36 0http://hi.baidu.com/jiajiajava ... -
JAVA中的线程状态都有哪些?
2014-05-04 10:38 0经常会遇到这样的问题,JAVA中的线程都有哪些状态? 通过du ... -
java.lang.IllegalStateException: The request associated with the AsyncContext ha
2013-12-27 11:09 5630在使用Servlet3.0的异步特性时,免不了会遇到下面这个异 ... -
The display name was defined in multiple fragments with different values includi
2013-12-06 11:13 3257在使用Servlet3.0的新特性中关于WebFragment ... -
java.lang.IllegalStateException: Not supported.at org.apache.catalina.connector.
2013-12-04 14:30 3952在使用Servlet3.0的异步特性的时候,经常会遇到如下异步 ... -
windows中有用的查找端口占用的命令
2013-07-19 15:43 1115在windows中可以使用如下命令,查看端口昌被哪个程序占用。 ... -
ClientCommunicatorAdmin restart/Checker-run 等异常的处理
2013-07-15 19:32 3902在做JMX相关的开发过程中,下面这个异常一个会遇到: 20 ... -
Apache启动异常:apache service unable to open logs
2013-07-04 15:09 7465当启动Apache时,如果弹出窗口提示引用unable to ... -
VBox异常退出后,不能启动问题的解决办法
2013-06-26 15:01 6730今天把VBox中的进程强制停止后,启动VBox的时候,Ubun ... -
InetAddress.getLocalHost().getHostAddress()获取的IP不正确
2013-06-09 17:43 10549今天把在Windows下运行很正常的程序拿到Linux下测试, ... -
获取JVM的所有可选参数
2013-05-30 17:54 959使用如下命令可以列出所有java可选的参数 java -XX: ... -
在windows中获取某个进程的具体执行路径
2013-05-20 17:55 2257经常遇到要处理某类问题,知道某个具体进程,但是却不知道真正的执 ... -
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is
2013-05-08 17:49 2886今天在学RMI的时候遇到了这个问题: java.rmi.Un ... -
java中的toString()和(String)obj的区别
2013-04-22 18:07 1706java中的toString()和(String)obj的区别 ... -
Struts2 Dispatcher initialization failed No mapping found for dependency default
2013-04-10 16:41 1187在struts2的使用时如果发现以下异常信息, 严重: D ... -
java debug
2013-03-27 06:46 8971、 条件断点 断点大家都比较熟悉,在Eclipse Jav ... -
Java远程调试 java -Xdebug各参数说明
2013-03-27 06:43 11604首先,JAVA自身支持调试功能,并提供了一个简单的调试工具-- ... -
jdk Logger引起的NullPointerException
2013-03-25 18:22 1010我们平时调用JDK的log来记录日志,都会习惯拿到一个logg ... -
对于应用服务器中的虚拟主机设置别名后,使用别名访问应用
2013-01-21 17:36 1482对于应用服务器中的虚拟主机设置别名后,使用http://别名 ... -
java.lang.IllegalStateException: Post too large的产生原因及解决方式
2013-01-10 18:35 3562最近客户那出了该异常: java.lang.Illegal ...
相关推荐
Java.util.ConcurrentModificationException 异常问题详解 ...ConcurrentModificationException 异常是 Java 集合框架中的一个重要概念,了解这个异常可以帮助我们更好地使用 Java 集合框架,避免一些常见的错误。
在Java中,我们通常会使用`Iterator`来安全地遍历并修改集合,因为`Iterator`提供了`remove()`方法来删除当前迭代的元素。但如果你在不使用`Iterator`的情况下直接调用集合的`remove()`或其他修改方法,就会触发异常...
在Java编程中,`java.util.ConcurrentModificationException` 是一个常见的运行时异常,通常发生在尝试并发修改集合时。这个异常的产生是由于集合类(如HashMap)的非线程安全特性,当你在一个线程中使用迭代器遍历...
java.util.ConcurrentModificationException 解决方法 在使用iterator.hasNext()操作迭代器的时候,如果此时迭代的对象发生改变,比如插入了新数据,或者有数据被删除。 则使用会报以下异常: Java.util....
ConcurrentModificationException如何解决.md
项目中碰到的,记录一下解决方案
在Java编程中,`ConcurrentModificationException`是一个常见的运行时异常,主要出现在多线程环境下对集合类(如List、Set、Map等)进行并发修改时。然而,这个异常不仅限于多线程环境,即使在单线程中,如果在遍历...
ConcurrentModificationException解决办法.md
总的来说,ArrayList在Java中是一个常用的动态数组实现,它提供了便捷的元素添加、删除和查找功能。其内部结构包括一个Object数组`elementData`用于存储元素,以及一个记录元素数量的`size`变量。ArrayList的容量...
ConcurrentModificationException(解决方案).md
Java中增强for循环的实现原理和坑详解 Java中增强for循环是一种强大且方便的迭代功能,自JDK 1.5以来,它已经成为Java开发者必备的技能之一。然而,许多开发者并不了解增强for循环的实现原理和可能存在的坑。下面...
Java中的垃圾回收机制自动管理内存,避免程序员手动释放内存可能导致的问题。GC的原理、类型(如Minor GC、Major GC、Full GC)和调优策略是Java开发者必须掌握的知识。了解不同GC算法(如串行、并行、CMS、G1、ZGC...
`ConcurrentModificationException`是Java中常见的并发异常,通常在多线程环境下,当一个线程正在修改集合(例如添加或删除元素),而另一个线程尝试迭代同一集合时,就会抛出此异常。 Axis1是一个开放源码的Web...
首先,`HashMap`是Java中最基本的非线程安全的散列映射容器。它基于哈希表实现,提供O(1)的平均时间复杂度进行插入、删除和查找操作。在Java 7中,`HashMap`内部由数组和链表构成,当多个键映射到同一个哈希桶时,会...