Java TreeMap firstEntry()方法

java.util.TreeMap.firstEntry() 返回键值最小的键值对。

1 语法

public Map.Entry<K,V> firstEntry()

2 参数

3 返回值

返回具有最小键的条目;如果此映射为空,则返回null。

4 示例 

package com.yiidian;

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

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

        // creating tree map
        TreeMap<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");

        System.out.println("Checking first entry");
        System.out.println("First entry is: "+ treemap.firstEntry());
    }
}

输出结果为:

Checking first entry
First entry is: 1=one

热门文章

优秀文章