标签: java algorithm collections concurrency concurrenthashmap
可能重复: When should I use ConcurrentSkipListMap?
我的意思是如果在java库中有ConcurrentSkipListMap,它有时可能比ConcurrentHashMap更好。我想知道ConcurrentSkipListMap在哪里真的很好用?
答案 0 :(得分:10)
ConcurrentSkipListMap支持SortedMap和NavigableMap。如果需要对数据进行排序,则可以使用(如果不需要并发,则使用TreeMap)
您也可以使用Collections.setFromMap()包装它以创建并发的SortedSet。