Java中NavigableMap接口的floorKey()方法用于返回小于或等于给定键的最大键;如果没有这样的键,则返回null。
用法:
K floorKey(K key)
其中,K是此映射维护的 key 的类型。
参数:此函数接受单个参数Key,该参数表示此映射容器维护的 key 的类型。
返回值:返回小于或等于给定键的最大键;如果没有这样的键,则返回null。
以下程序说明了Java中的floorKey()方法:
程序1:当键为整数时。
// Java code to demonstrate the working of
// floorKey() method
import java.io.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the NavigableMap of Integer and String
NavigableMap<Integer, String> nmmp = new TreeMap<>();
// assigning the values in the NavigableMap
// using put()
nmmp.put(2, "two");
nmmp.put(7, "seven");
nmmp.put(3, "three");
System.out.println("The mapping with greatest"
+ " key is : " + nmmp.floorKey(7));
}
}
输出:
The mapping with greatest key is : 7
程序2:当键是字符串时。
// Java code to demonstrate the working of
// floorKey() method
import java.io.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the NavigableMap of Integer and String
NavigableMap<String, String> tmmp = new TreeMap<>();
// assigning the values in the NavigableMap
// using put()
tmmp.put("one", "two");
tmmp.put("six", "seven");
tmmp.put("two", "three");
System.out.println("The mapping associated with greatest"
+ " key is : " + tmmp.floorKey("one"));
}
}
输出:
The mapping associated with greatest key is : one
参考: https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#floorKey(K)
相关用法
- Java NavigableMap put()用法及代码示例
- Java NavigableMap isEmpty()用法及代码示例
- Java NavigableMap clear()用法及代码示例
- Java NavigableMap lowerEntry()用法及代码示例
- Java NavigableMap size()用法及代码示例
- Java NavigableMap ceilingKey()用法及代码示例
- Java NavigableMap firstEntry()用法及代码示例
- Java NavigableMap ceilingEntry()用法及代码示例
- Java NavigableMap lastEntry()用法及代码示例
- Java NavigableMap higherKey()用法及代码示例
- Java NavigableMap pollLastEntry()用法及代码示例
- Java NavigableMap lowerKey()用法及代码示例
- Java NavigableMap higherEntry()用法及代码示例
- Java NavigableMap pollFirstEntry()用法及代码示例
- Java NavigableMap floorEntry()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 NavigableMap floorKey() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。