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 :)
ConcurrentLinkedHashSethere:artemis.ms.mff.cuni.cz/viewvc/pogamut/trunk/project/Core/src/cz/… :) – Zenofo Mar 13 '11 at 17:28Set rs=new LinkedHashSet(list)toSet rs=new LinkedHashSet(); for (Iterator ir = list.iterator(); ir.hasNext();) { rs.add(ir.next()); }right? thanks :) – Zenofo Mar 13 '11 at 18:12