从列表中删除项目
2022-08-31 09:40:27
在循环浏览列表时,我想根据条件删除列表中的项。请参阅下面的代码。
这给了我一个例外。ConcurrentModification
for (Object a : list) {
if (a.getXXX().equalsIgnoreCase("AAA")) {
logger.info("this is AAA........should be removed from the list ");
list.remove(a);
}
}
如何做到这一点?