当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.util.TreeMap.floorKey()用法及代码示例



描述

这个floorKey(K key)方法用于返回小于或等于给定键的最大键,如果没有这样的键,则返回 null。

声明

以下是声明java.util.TreeMap.floorKey()方法。

public K floorKey(K key)

参数

key- 这是要匹配的关键。

返回值

方法调用返回小于或等于 key 的最大键,如果没有这样的键,则返回 null。

异常

  • ClassCastException- 如果指定的键无法与映射中的当前键进行比较,则抛出此异常。

  • NullPointerException- 如果指定的键为空并且此映射使用自然排序,或者其比较器不允许空键,则抛出此异常。

示例

下面的例子展示了 java.util.TreeMap.floorKey() 方法的用法。

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 java.util.TreeMap.floorKey() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。