Java TreeMap firstKey()方法
java.util.TreeMap.firstKey() 用于返回TreeMap中当前的第一个(最低)键。
1 语法
public K firstKey()
2 参数
无
3 返回值
返回此映射中当前的第一个(最低)键。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeMap.firstKey()方法的例子
*/
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 key");
System.out.println("First key is: "+ treemap.firstKey());
}
}
输出结果为:
Checking first key
First key is: 1
热门文章
优秀文章