ConcurrentSkipListMap有什么好处?

时间:2011-03-24 13:03:12

标签: java algorithm collections concurrency concurrenthashmap

  

可能重复:
  When should I use ConcurrentSkipListMap?

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

1 个答案:

答案 0 :(得分:10)

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

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