Java TreeMap ceilingEntry()方法
java.util.TreeMap.ceilingEntry() 返回具有最小键值(大于或等于指定键)的键值对,如果没有这样的键,则返回null。
1 语法
public Map.Entry<K,V> ceilingEntry(K key)
2 参数
key:这是要匹配的key。
3 返回值
返回具有最小键值(大于或等于指定键)的键值对,如果没有这样的键,则返回null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeMap.ceilingEntry() 方法的例子
*/
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");
System.out.println("Ceiling entry for 4: "+ treemap.ceilingEntry(4));
System.out.println("Ceiling entry for 5: "+ treemap.ceilingEntry(5));
}
}
输出结果为:
Ceiling entry for 4: 5=five
Ceiling entry for 5: 5=five
热门文章
优秀文章