What is Fail-Fast Iterator?

Fail-Fast iterators throw ConcurrentModificationException if the Collection is modified structurally. Fail-Fast iterators fail quickly and cleanly rather than risking the arbitrary non-deterministic behavior at undetermined time in future.

Now Fail-Fast iterators can throw ConcurrentModificationException in two situations:

  1. Single threaded environment: Once iterator is created and you don’t use remove method of iterator to remove element from Collection. Also if you use add method while iterating over collection then also ConcurrentModificationException is thrown.
  2. Multithreaded Environment: If one thread is iterating over the collection and another thread modifies the collection structurally.

This leads to one more question: How does the iterator comes to know that internal structure is modified?

  • There is a int value called modCount. Whenever the Collection is modified structurally the modCount is incremented. next() method and remove() method of Iterator calls checkForComodification() method which checks modCount and expectedModCount are same or not. If not then ConcurrentModificationException is thrown.
List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5);
Iterator<Integer> iterator = numbers.iterator();
while(iterator.hasNext()) {
    iterator.next();
    iterator.remove(2);
}

Exception in thread "main" java.util.ConcurrentModificationException
    at java.util.ArrayList$Itr.checkForComodification(Unknown Source)
    at java.util.ArrayList$Itr.next(Unknown Source)

In this article, we saw that fail-fast iterators can throw ConcurrentModificationException if the Collection is modified structurally while iterating.

Join the Newsletter

Download Complete Guide to Comparators in
1. Java 8
2. Map.Entry Interface
3. Spring
4. Google Guava
5. Apache Collections
with more than 60 examples. One book to know and learn it all.

    We respect your privacy. Unsubscribe at any time.

    Leave a Reply

    Your email address will not be published. Required fields are marked *