I get a ConcurrentModificationException even though I made all the methods of the whole program synchronized (including static methods and the main method).

I don't have hidden iterators.

  1. How is that even possible?!
  2. What does it mean?
  3. How can I fix it?
link|improve this question

44% accept rate
full traceback will be useful, although I have a few guesses about what it was about. – Lie Ryan Dec 20 '11 at 22:59
feedback

7 Answers

up vote 6 down vote accepted
  1. A ConcurrentModificationException can be caused by the same thread manipulating a collection while iterating over it
  2. It means don't change collections while iterating over them, except through the Iterator.remove() or ListIterator.add() methods
  3. see 2.
link|improve this answer
feedback

ConcurrentModificationException is NOT related to synchronization.

It's related to modifying a collection while iterating through it. As Lie Ryan points out, a full stack trace would help us point out how you got it.

Generally, to fix this, you must not modify the collection itself while iterating through it.

link|improve this answer
1  
What's wrong with modifying a collection while iterating over it? And how can it be avoided? – Leif Ericson Dec 20 '11 at 23:01
What's wrong is that it can corrupt the iterator. So, most iterators are made to throw this error if it detects that you've modified the underlying collection during iteration. It can be avoided by .... not doing that. Sorry, without more details about exactly what you did, I can't be more specific. – rfeak Dec 20 '11 at 23:04
My hunch is that there are more than one iterator in play when your looping over it and trying to remove it. – Steven Dec 20 '11 at 23:04
feedback

If you run this

List<Object> list = new ArrayList<Object>();
for(Object obj : list)
    list.remove(obj);

You will get a comodification. You cannot alter a collection while iterating over it without using the appropriate functions.

This can be resolved using the following:

List<Object> list = new ArrayList<Object>();
for(Iterator<Object> itr = list.iterator(); itr.hasNext();)
    itr.remove();
link|improve this answer
feedback

Well, to start with, if you're seeing it, it's possible: if the bird book and the bird disagree, believe the bird.

Now, how can it happen? Hard to say exactly without seeing your code, but the exception stacktrace will point to the place it happened; what do you see around that?

In general, it's going to happen when you have, obviously, concurrent accesses. When you find the place in which it's happening, ask yourself what threads could be getting there.

link|improve this answer
feedback

You get this exception when you're iterating over a collection and during this you remove an entry from this collection.

e.g.

Collection<Object> objects = new ArrayList<Objects>(Arrays.asList("a","b"));
for (Object o : objects) {
    objects.remove(o); //throws exception
}

You must add the ones you want to remove to another collection and remove them after your finished iterating over the list. Otherwise, you iterate over the objects collection via it's iterator() and call remove() on the current iterator.

link|improve this answer
Why should it happen? – Leif Ericson Dec 20 '11 at 23:00
remove() on collection searches for it and would cause the previous iterator to be invalid. Guess it's just not smart enough to handle this case so it just throws an exception. Hope others can answer this better. – Steven Dec 20 '11 at 23:02
feedback

A synchronized method places a lock on the object instance it's running with.

If objects A and B access the same collection, it doesn't matter if A#doStuff and B#doStuff are synchronized - they can still execute concurrently.

To lock the collection, you probably want a lock on the collection itself: synchronized(collection) in the method bodies, or a Java 5 mutex (better).

(that and the fact that you can have ConcurrentModificationException even in a single thread as others have pointed out).

link|improve this answer
feedback

The javadoc for ConcurrentModificationException contains the answer:

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 throw this exception.

The way to fix it is to not do that.

I.e., (as others have noted) if you need to simultaneously iterate and modify, use the methods supplied by the iterator rather than modifying the collection directly.

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.