欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java.util.ConcurrentModificationException

程序员文章站 2024-03-25 15:27:10
...

并发修改异常

java.util.ConcurrentModificationException
	at java.util.HashMap$HashIterator.nextNode(HashMap.java:1437)
	at java.util.HashMap$KeyIterator.next(HashMap.java:1461)
	at org.hibernate.collection.internal.AbstractPersistentCollection$IteratorProxy.next(AbstractPersistentCollection.java:835)
	at com.aui.stock.service.impl.CartServiceImpl.deleteCartItem(CartServiceImpl.java:147)
	at com.aui.stock.service.impl.CartServiceImpl$$FastClassBySpringCGLIB$$323fef9e.invoke(<generated>)

当时用迭代器删除集合中的元素值需要注意并发修改异常 

使用迭代器去删除 不要使用list集合去删除

错误的做法

 Set<GoodsEntity> items = cart.getItems();
        if(items!=null&&items.size()>0){
            for(GoodsEntity goodsEntity : items){
                if(snSet.size()>0){
                    if(snSet.contains(goodsEntity.getProduct().getSn())){
                        items.remove(goodsEntity);
                    }
                }
            }
        }

正确的做法

Set<GoodsEntity> items = cart.getItems();
        if(items!=null&&items.size()>0){
            Iterator<GoodsEntity> iterator = items.iterator();
            while(iterator.hasNext()){
                GoodsEntity goodsEntity = iterator.next();
                if(snSet.size()>0){
                    if(snSet.contains(goodsEntity.getProduct().getSn())){
                        iterator.remove();
                    }
                }
            }
        }

 

上一篇: Python-for循环

下一篇: