我想知道这段代码是否会抛出任何其他异常。
public class asd{
static private List<Integer> list = new ArrayList<>();
public static main(String[]args){
list.add(0);
list.add(1);
list.add(3);
for(Integer integer: list) {
if(integer% 2 == 0) {
list.remove(integer);
}
}
}
}
我知道 ConcurrentModificationException。我只是想知道这段代码是否能够做更多的混乱。非常感谢
犯罪嫌疑人X
蝴蝶不菲
慕尼黑8549860
相关分类