标签: java sorting concurrency
是否有人知道Java中提供排序行为的任何并发集合?如果它是如何在内部工作的?
答案 0 :(得分:3)
ConcurrentSkipListSet和ConcurrentSkipListMap正是您要找的,相当于TreeSet和TreeMap
ConcurrentSkipListSet
ConcurrentSkipListMap
TreeSet
TreeMap