my code throw follow exception:

java.util.ConcurrentModificationException
        at java.util.LinkedList$ListItr.checkForComodification(LinkedList.java:761)
        at java.util.LinkedList$ListItr.next(LinkedList.java:696)
        at java.util.AbstractCollection.addAll(AbstractCollection.java:305)
        at java.util.LinkedHashSet.<init>(LinkedHashSet.java:152)
        ...

I want a ConcurrentLinkedHashSet to fix it,

but I only found ConcurrentSkipListSet in java.util.concurrent,this is TreeSet, not LinkedHashSet

any easies way to get ConcurrentLinkedHashSet in JDK6.0?

thanks for help :)

link|improve this question

3  
Are you trying to add or remove elements while looping over said linkedhashset? The solution might not be using a concurrent set, but rather, using an iterator to perform modifications mid-loop – Zach L Mar 13 '11 at 16:54
I got a ConcurrentLinkedHashSet here:artemis.ms.mff.cuni.cz/viewvc/pogamut/trunk/project/Core/src/cz/… :) – Zenofo Mar 13 '11 at 17:28
1  
I wasn't saying that you can't get a ConcurrentLinkedHashSet, but that your problem may be coming from modifying your linkedhashset in a loop, and if that was the case, using an iterator from the linkedhashset would be a far more appropriate solution. You should not need a concurrent linked hash set unless there is threading involved in your program. – Zach L Mar 13 '11 at 17:58
@Zach L very thanks for help, you mean I will change Set rs=new LinkedHashSet(list) to Set rs=new LinkedHashSet(); for (Iterator ir = list.iterator(); ir.hasNext();) { rs.add(ir.next()); } right? thanks :) – Zenofo Mar 13 '11 at 18:12
if you post a SSCCEE, i.e. a short, self-contained, compilable example, of where you are getting this error, we'll be able to offer you better help. From your small example, neither should throw a ConcurrentModificationException, ostensibly. – Zach L Mar 13 '11 at 19:27
feedback

3 Answers

up vote 3 down vote accepted

A ConcurrentModificationException has nothing to do with concurrency in the form you're thinking of. This just means that while iterating over the Collection, someone (probably your own code - that happens often enough ;) ) is changing it, i.e. adding/removing some values.

Make sure you're using the Iterator to remove values from the collection and not the collection itself.

Edit: If really another thread is accessing the Collection at the same time, the weak synchronization you get from the standard library is useless anyhow, since you've got to block the Collection for the whole duration of the operation not just for one add/remove! I.e. something like

synchronize(collection) {
   // do stuff here
}
link|improve this answer
feedback

You can always create a synchronized collection with Collections.synchronizedMap(myMap);. However, trying to alter the map while you're iterating (which I'm assuming is the cause of your error) will still be a problem.

From the docs for synchronizedMap:

Returns a synchronized (thread-safe) map backed by the specified map. In order to guarantee serial access, it is critical that all access to the backing map is accomplished through the returned map.

It is imperative that the user manually synchronize on the returned map when iterating over any of its collection views ... Failure to follow this advice may result in non-deterministic behavior.

This is because

  • normally a concurrent collection is really guaranteeing atomic get/put but is not locking the entire collection during iteration, which would be too slow. There's no concurrency guarantee over iteration, which is actually many operations against the map.

  • it's not really concurrency if you're altering during iteration, as it's impossible to determine correct behavior - for example, how do you reconcile your iterator returning hasNext == true with deleting a (possibly the next value) from the collection?

link|improve this answer
feedback

Unfortunately not. You could implement your own, wrapping a ConcurrentHashMap and a ConcurrentLinkedQueue, but this wouldn't allow you to remove values easily (removal would be O(N), since you'd have to iterate through everything in the queue) ...

What are you using the LinkedHashSet for though? Might be able to suggest alternatives...

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.