Possible Duplicate:
When should I use ConcurrentSkipListMap?


我的意思是,如果Java库中有ConcurrentSkipListMap,它有时可能比ConcurrentHashMap更好。我想知道ConcurrentSkipListMap在哪里真的好吗?

最佳答案

ConcurrentSkipListMap支持SortedMap和NavigableMap。如果需要对数据进行排序,则可以使用它(如果不需要并发,则使用TreeMap)

您也可以使用Collections.setFromMap()包装它,以创建并发的SortedSet。

10-07 23:39