Fail-fast Iterators fail as soon as they realized that structure of Collection has been changed since iteration has begun.
Structural changes means adding, removing or updating any element from
collection while one thread is Iterating over that collection.
Fail-fast behavior is implemented by keeping a modification count and if iteration thread realizes the change in modification count it throws ConcurrentModificationException.
Fail-fast behavior is implemented by keeping a modification count and if iteration thread realizes the change in modification count it throws ConcurrentModificationException.
No comments:
Post a Comment