在 Java 中的 foreach 循环中调用 remove
在 Java 中,在使用 foreach 循环循环循环遍历集合时对集合调用 remove 是否合法?例如:
List<String> names = ....
for (String name : names) {
// Do something
names.remove(name).
}
作为附录,删除尚未迭代的项目是否合法?例如
//Assume that the names list as duplicate entries
List<String> names = ....
for (String name : names) {
// Do something
while (names.remove(name));
}