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.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

get an Iterator instead of using the iterator in a for loop:

final Iterator<Object> iterator = list.iterator();
int count = 0;
while (iterator.hasNext()) {
    final Object o = iterator.next();

    if (++count == 5) {
        iterator.remove();
    }

    o.toString();
}

edit: the reason why you get ConcurrentModificationException is because the for loop is using a different Iterator which was created before your modification will being made with list.remove() and that Iterator has a state inside.

link|improve this answer
That's an idea, but I really want to know the mechanism why it is impossible after one element removal just to take the next Object from a queue and proceed. – siik Dec 21 '10 at 10:27
feedback

Basically you're not allowed to refer to the collection (list in this case) inside the foreach loop.

Try this instead:

List<Object> list = new ArrayList<Object>();
fillTheList(); // Filling a list with 10 objects
int count = 0;
ListIterator<Object> it = list.listIterator();
while (it.hasNext()) {
    Object o = it.next();
    count++;
    if (count == 5) {
        it.remove();
    }
    o.toString();
}
link|improve this answer
feedback

There is usually a better way to do this rather than use iterator.remove(). e.g. in your case, the loop is the same as

if(list.size()> 5) list.remove(5);

If you do need to use iterator.remove() you can still use a for loop.

for(Iterator iterator = list.iterator(); iterator.hasNext();) {
    final Object o = iterator.next();

    if (++count == 5)
       iterator.remove();

    o.toString();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.