@Test
public void testListCur(){
    List<String> li=new ArrayList<String>();
    for(int i=0;i<10;i++){
        li.add("str"+i);
    }

    for(String st:li){
        if(st.equalsIgnoreCase("str3"))
            li.remove("str3");
    }
    System.out.println(li);
}

When I run this code,I will meet a ConcurrentModificationException.

It seems that when I remove the sepcified element,the list does not know its size have been changed.

So I wonder if this is a common problem?

link|improve this question

possible duplicate of loop on list with remove – McDowell May 9 '11 at 12:05
feedback

3 Answers

up vote 11 down vote accepted

I believe this is the purpose behind the Iterator.remove() method, to be able to remove an element from the collection while iterating.

For example:

Iterator<String> iter = li.iterator();
while(iter.hasNext()){
    if(iter.next().equalsIgnoreCase("str3"))
        iter.remove();
}
link|improve this answer
unfortunately, in the foreach loop, there is no access to the underlying iterator, so iterator.remove() is hidden. – akf Feb 25 '11 at 2:59
1  
Well yes, you wouldn't be able to use the for-each loop, you'd have to switch to using the Iterator. – Paul Blessing Feb 25 '11 at 3:04
@afk, Yes you would have to switch to using an Iterator. Remember the for-each loop is just syntactic sugar. This would be one of the cases where it clearly doesn't make sense to use that syntax. – Tim Bender Feb 25 '11 at 3:46
feedback

Note that this exception does not always indicate that an object has been concurrently modified by a different thread. If a single thread issues a sequence of method invocations that violates the contract of an object, the object may throw this exception. For example, if a thread modifies a collection directly while it is iterating over the collection with a fail-fast iterator, the iterator will thow this exception

Taken from http://download.oracle.com/javase/1.4.2/docs/api/java/util/ConcurrentModificationException.html

link|improve this answer
feedback

yes people run into it -- the problem is you can't modify the list while iterating over it. I have used 2 alternatives in the past:

  1. You can keep track of the indexes of the items you want to remove, and then remove them after you are done iterating.
  2. Or you can copy all the ones you want to keep into a new list as you iterate, and then discard the old list when done.

those options assume you have to iterate over the list to find the elements to remove -- useful in cases where the list elements are complex objects with properties you might test on.

In your particular case, you dont even need to iterate, as you can just use removeAll. Look at the API here. There are also nifty methods like retainAll that discard everything that is not in the argument. You can use remove/retain-like methods whenever the objects in the list implement equals and hashcode properly. If you cannot rely on equals/hashcode to identify equality between instances in your app, you will have to do the removal yourself....

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.