java中遇到的噁心異常java.util.ConcurrentModificationException

1,單線程下遇到的場景:在foreach遍歷中,使用list.remove(對象)拋異常   list.forEach(orderItemEntity -> {     if (orderItemEntity.getProductId().equals(productId)){         list.remove(orderItemEntity);     } }) 產生的原因:    看一下
相關文章
相關標籤/搜索