I'm wondering what is really going on behind the scene when I'm executing the following peace of code:
List<Object> list = new ArrayList<Object>();
fillTheList(); // Filling a list with 10 objects
int count = 0;
for (Object o : list) {
count++;
if (count == 5) {
list.remove(count);
}
o.toString();
}
Once element is removed I'm getting ConcurrentModificationException exception.
I don't understand why after one of elements removing it is impossible just to take the next one available in the collection and proceed with a cycle.