1.

What Is Concurrentskiplistset In Java?

Answer»

ConcurrentSkipListSet implements NavigableSet and it is a sorted set just like TreeSet with added FEATURE of being concurrent.

The elements of the set are KEPT sorted according to their natural ordering, or by a Comparator provided at set creation time, DEPENDING on which constructor is USED.

ConcurrentSkipListSet implements NavigableSet and it is a sorted set just like TreeSet with added feature of being concurrent.

The elements of the set are kept sorted according to their natural ordering, or by a Comparator provided at set creation time, depending on which constructor is used.



Discussion

No Comment Found