如何为地图的后续地图指定比较器
ConcurrentSkipListMap<byte[], ConcurrentSkipListMap<byte[], ConcurrentSkipListMap<byte[], Object>>> myIndex;
以下声明是否正确
myIndex = new ConcurrentSkipListMap<byte[], ConcurrentSkipListMap<byte[], ConcurrentSkipListMap<byte[], Object>>>(new MyCustomComparator)
此比较器是否适用于内部ConcurrentSkipListMap
最佳答案
不,它将不适用于内部ConcurrentSkipListMap。创建内部映射的实例时,必须将其传递给内部ConcurrentSkipListMap()的构造函数。
关于java - 如何为 map 的后续 map 指定比较器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15610828/