I know there is a InnerClass named"Itr" in java.util.AbstractList. and there is a field named "expectedModCount", a method named "checkForComodification". when iterator a collection but update the collection, this method will throw the ConcurrentModificationException I want to know why java language designed like this? what is the purpose to do like this.
Thx !

volatileand there is no guarantee that a ConcurrentModificationException will be thrown. – Peter Lawrey Jul 23 '12 at 9:35