InterviewSolution
| 1. |
What Is Concurrentskiplistmap In Java? |
|
Answer» CONCURRENTSKIPLISTMAP implements ConcurrentNavigableMap and it is a sorted map just like TreeMap with the added FEATURE of being concurrent. ConcurrentSkipListMap is sorted according to the natural ORDERING of its KEYS, or by a Comparator provided at map CREATION time, depending on which constructor is used. ConcurrentSkipListMap implements ConcurrentNavigableMap and it is a sorted map just like TreeMap with the added feature of being concurrent. ConcurrentSkipListMap is sorted according to the natural ordering of its keys, or by a Comparator provided at map creation time, depending on which constructor is used. |
|