digital-garden/archive/Я.Практикум/Полезное/ConcurrentModificationException.md
2024-06-13 21:01:37 +03:00

22 lines
681 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ConcurrentModificationException
Этот код отработает нормально без исключения. Метод, который генерирует исключение не будет вызван, так как исключение вызвает метод next() итератора, а без второго элемента он не будет вызван.
```java
import java.util.HashMap;
import java.util.Map;
public class Main {
public static void main(String[] args) {
Map<String, String> map = new HashMap<>();
map.put("a", "a");
for (String key : map.keySet()) {
map.remove(key);
}
}
}
```