2

map の次の map のコンパレータの指定方法

ConcurrentSkipListMap<byte[], ConcurrentSkipListMap<byte[], ConcurrentSkipListMap<byte[], Object>>> myIndex;

次の宣言は正しいでしょうか

myIndex = new ConcurrentSkipListMap<byte[], ConcurrentSkipListMap<byte[], ConcurrentSkipListMap<byte[], Object>>>(new MyCustomComparator)

このコンパレータは内部の ConcurrentSkipListMap に適用されますか

4

1 に答える 1

1

いいえ、内部の ConcurrentSkipListMap には適用できません。内部マップのインスタンスを作成するときに、内部 ConcurrentSkipListMap() のコンストラクターに渡す必要があります。

于 2013-03-25T09:00:07.320 に答える