I have a list I need to iterate over and delete certain items. I can't use an iterator because I need to call methods for each item (such as ls.getStatus()) which doesn't work with an iterator. If ls.getStatus() == 0 I need to delete that item. How can I avoid the ConcurrentModificationException?

for (MyList ls : list) {
    if (ls.getStatus() == 0) {
        ls.run();
        list.remove();
    } else {
        ls.create();
    }
}

Thanks

link|improve this question

33% accept rate
Why can't you call methods on the items when using an iterator?? – Hovercraft Full Of Eels Feb 19 at 19:43
You are internally using the iterator indeed. The line for(MyList ls : list) internally uses the list iterator to iterate. – Sajan Chandran Feb 19 at 19:47
Why not use just for loop? – Ixx Feb 19 at 22:11
feedback

3 Answers

up vote 5 down vote accepted

Why don't you think you can use an iterator?

Iterator<MyList> i = list.iterator();
while (i.hasNext()) {
    MyList ls = i.next();

    //... all your other code which uses ls...

    i.remove();
}

This approach is also likely to be faster, since using iterator.remove() avoids having to search for the item in the list which is necessary with list.remove(item).

link|improve this answer
If ls is an object in the list<listObject> I got an error saying I can't call methods from the object class such as ls.getStatus? – user1212520 Feb 19 at 19:46
Ok it works with your code, thanks a lot! :) – user1212520 Feb 19 at 19:47
2  
@user1212520: because you're not using a generic iterator. See dty's example above. But your basic assumption -- that you can't use an iterator is wrong. Period. – Hovercraft Full Of Eels Feb 19 at 19:48
The problem is that remove operation can invalidate the iterator. – Trismegistos Feb 19 at 19:49
@Trismegistos: Where does it say, that calling remove invalidates the iterator? "Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next()." (emphasis mine) clearly suggests, that remove is designed to be called during iteration without invalidating the iterator. – Dirk Feb 19 at 20:08
show 5 more comments
feedback

You can use an iterator, but only by abandoning the enhanced for loop:

for (Iterator<MyList> iterator = list.iterator(); iterator.hasNext(); ) {
    MyList ls = iterator.next();
    if (ls.getStatus() == 0) {
        lo.run(zo);
        iterator.remove();
    } else {
        ls.create();
    }
}

Of course, that assumes that list refers to a type which supports the remove operation.

link|improve this answer
Jon Skeet dixit. – Alessandro Santini Feb 19 at 20:33
feedback

In case your iterator does not support remove operation you could use following algorithm:

In first step you can iterate over list creating list of indices of elements to be deleted. Next step would be iterating over list of indices backward and deleting elements by index.

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.