Java TreeMap comparator()方法

java.util.TreeMap.comparator() 返回按顺序排列键的比较器;如果映射使用自然顺序,则返回null。

1 语法

public Comparator<? super K> comparator()

2 参数

3 返回值

返回用于在此TreeMap中对键进行排序的比较器;如果此TreeMap使用其键的自然顺序,则返回null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.TreeMap.comparator() 方法的例子
 */
import java.util.*;

public class Demo {
    public static void main(String[] args) {

        // creating tree map
        NavigableMap<Integer, String> treemap = new TreeMap<Integer, String>();

        // populating tree map
        treemap.put(2, "two");
        treemap.put(1, "one");
        treemap.put(3, "three");
        treemap.put(6, "six");
        treemap.put(5, "five");

        // using comparator
        Comparator comp = treemap.comparator();

        System.out.println("Following natural ordering");
        System.out.println("Comparator value: "+ comp);
    }
}

输出结果为:

Following natural ordering
Comparator value: null

热门文章

优秀文章