java.util.TreeMap.floorKey()方法实例
floorKey(K key) 方法用于返回的最大键小于或等于给定的键,或null,如果不存在这样的键
声明
以下是java.util.TreeMap.floorKey()方法的声明。
public K floorKey(K key)
参数
-
key-- 这是要匹配的键。
返回值
方法调用返回的最大键小于等于key,或者null,如果不存在这样的键。
异常
-
ClassCastException-- 如果指定键不能与映射中的当前键进行比较,抛出此异常。
-
NullPointerException-- 抛出此异常如果指定键为null,并且此映射使用自然顺序,或者其比较器不允许使用null键。
例子
下面的示例演示java.util.TreeMap.floorKey()方法的用法。
package com.yiibai; import java.util.*; public class TreeMapDemo { 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 greatest key less than or equal to 4"); System.out.println("Value is: "+ treemap.floorKey(4)); } }
现在编译和运行上面的代码示例,将产生以下结果。
Checking greatest key less than or equal to 4 Value is: 3