我的代码抛出以下异常:
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)
...
我想要ConcurrentLinkedHashSet
修复它,
但我只发现ConcurrentSkipListSet
,java.util.concurrent
这是TreeSet
,不是LinkedHashSet
进入JDK6.0的任何简单方法ConcurrentLinkedHashSet
?
感谢帮助 :)