JAVA併發容器-ConcurrentSkipListMap,ConcurrentSkipListSet

ConcurrentSkipListMap其實是TreeMap的併發版本。TreeMap使用的是紅黑樹,並且按照key的順序排序(自然順序、自定義順序),但是他是非線程安全的,如果在併發環境下,建議使用ConcurrentHashMap或者ConcurrentSkipListMap。 ConcurrentSkipListSet其實是TreeSet的併發版本。TreeSet底層使用紅黑樹,並且按照k
相關文章
相關標籤/搜索