Uwaga: znam Iterator#remove()
metodę.
W poniższym przykładzie kodu nie rozumiem, dlaczego metoda List.remove
in main
zgłasza ConcurrentModificationException
, ale nie w remove
metodzie.
public class RemoveListElementDemo {
private static final List<Integer> integerList;
static {
integerList = new ArrayList<Integer>();
integerList.add(1);
integerList.add(2);
integerList.add(3);
}
public static void remove(Integer toRemove) {
for(Integer integer : integerList) {
if(integer.equals(toRemove)) {
integerList.remove(integer);
}
}
}
public static void main(String... args) {
remove(Integer.valueOf(2));
Integer toRemove = Integer.valueOf(3);
for(Integer integer : integerList) {
if(integer.equals(toRemove)) {
integerList.remove(integer);
}
}
}
}
ConcurrentModificationException
a druga nie.
return;
do pętli.
Iterator#remove()
. Dlaczego robisz to w ten sposób?