vote up 7 vote down star
2

Hello everyone.

We all know you can't do this:

for (Object i : l)
    if (condition(i)) l.remove(i);

ConcurrentModificationException etc... this apparently works sometimes, but not always. Here's some specific code:

public static void main(String[] args)
{
    Collection<Integer> l = new ArrayList<Integer>();
    for (int i=0; i < 10; ++i) {
    l.add(new Integer(4));
    l.add(new Integer(5));
    l.add(new Integer(6));
    }
    for (Integer i : l)
    {
        if (i.intValue() == 5)
            l.remove(i);
    }
    System.out.println(l);
}

This, of course, results in:

Exception in thread "main" java.util.ConcurrentModificationException

...even though multiple threads aren't doing it... Anyway.

What's the best solution to this problem? "Best" here means most time and space efficient (I realize you can't always have both!) I'm also using an arbitrary Collection here, not necessarily an ArrayList, so you can't rely on get.

flag

67% accept rate

3 Answers

vote up 17 vote down check

Iterator.remove() is safe.

Note that Iterator.remove is the only safe way to modify a collection during iteration; the behavior is unspecified if the underlying collection is modified in any other way while the iteration is in progress.

is from:

http://java.sun.com/docs/books/tutorial/collections/interfaces/collection.html

link|flag
wasn't aware this functionality was there. I usually copy the list and iterate over the copy. – Mike Brown Oct 21 '08 at 23:30
genius. me neither. – Joel Jun 13 at 16:28
vote up 2 vote down

You can either use the iterator directly like you mentioned, or else keep a second collection and add each item you want to remove to the new collection, then removeAll at the end. This allows you to keep using the type-safety of the for-each loop at the cost of increased memory use and cpu time (shouldn't be a huge problem unless you have really, really big lists or a really old computer)

public static void main(String[] args)
{
    Collection<Integer> l = new ArrayList<Integer>();
    Collection<Integer> itemsToRemove = new ArrayList<Integer>();
    for (int i=0; i < 10; ++i) {
    l.add(new Integer(4));
    l.add(new Integer(5));
    l.add(new Integer(6));
    }
    for (Integer i : l)
    {
        if (i.intValue() == 5)
            itemsToRemove.add(i);
    }

    l.removeAll(itemsToRemove);
    System.out.println(l);
}
link|flag
this is what i normally do, but the explicit iterator is a more elgant solution i feel. – Claudiu Oct 21 '08 at 23:51
Fair enough, as long as you aren't doing anything else with the iterator - having it exposed makes it easier to do things like call .next() twice per loop etc. Not a huge problem, but can cause issues if you are doing anything more complicated than just running through a list to delete entries. – RodeoClown Oct 21 '08 at 23:58
@RodeoClown: in the original question, Claudiu is removing from the Collection, not the iterator. – matt b Oct 22 '08 at 14:29
Removing from the iterator removes from the underlying collection... but what I was saying in the last comment is that if you are doing anything more complicated than just looking for deletes in the loop (like processing correct data) using the iterator can make some errors easier to make. – RodeoClown Oct 22 '08 at 18:35
If it is a simple delete values that aren't needed and the loop is only doing that one thing, using the iterator directly and calling .remove() is absolutely fine. – RodeoClown Oct 22 '08 at 18:36
vote up 2 vote down

Silly me:

Iterator<Integer> iter = l.iterator();
while (iter.hasNext()) {
    if (iter.next().intValue() == 5) iter.remove();
}

I assumed that since a foreach loop is syntactic sugar for iterating, using an iterator would help.

link|flag
foreach loop is syntactic sugar for iterating. However as you pointed out, you need to call remove on the iterator - which foreach doesn't give you access to. Hence the reason why you can't remove in a foreach loop (even though you are actually using an iterator under the hood) – madlep Oct 21 '08 at 23:30
I think you should accept Bill K's answer. – matt b Oct 22 '08 at 14:30

Your Answer

Get an OpenID
or

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