Java中的NavigableMap接口的higherEntry()方法用於返回與嚴格大於給定鍵的最小鍵關聯的鍵-值映射,如果不存在這樣的鍵,則返回null。
用法:
Map.Entry< K, V > higherEntry(K key)
其中,K是此映射維護的鍵的類型,V是映射到鍵的值的類型。
參數:此函數接受單個參數Key,該參數表示此映射容器維護的 key 的類型。
返回值:返回與嚴格大於給定鍵的最小鍵關聯的鍵-值映射關係;如果不存在這樣的鍵,則返回null。
以下程序說明了Java中的higherEntry()方法:
程序1:當鍵為整數時。
// Java code to demonstrate the working of
// higherEntry() 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 least key is : "
+ nmmp.higherEntry(2));
}
}
輸出:
The mapping with least key is : 3=three
程序2:當鍵是字符串時。
// Java code to demonstrate the working of
// higherEntry() 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 the least key is : "
+ tmmp.higherEntry("one"));
}
}
輸出:
The mapping associated with the least key is : six=seven
參考: https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#higherEntry(K)
相關用法
- Java TreeMap higherEntry()用法及代碼示例
- Java NavigableMap put()用法及代碼示例
- Java NavigableMap lowerKey()用法及代碼示例
- Java NavigableMap ceilingEntry()用法及代碼示例
- Java NavigableMap pollLastEntry()用法及代碼示例
- Java NavigableMap pollFirstEntry()用法及代碼示例
- Java NavigableMap floorKey()用法及代碼示例
- Java NavigableMap floorEntry()用法及代碼示例
- Java NavigableMap ceilingKey()用法及代碼示例
- Java NavigableMap firstEntry()用法及代碼示例
- Java NavigableMap size()用法及代碼示例
- Java NavigableMap lowerEntry()用法及代碼示例
- Java NavigableMap lastEntry()用法及代碼示例
- Java NavigableMap clear()用法及代碼示例
- Java NavigableMap isEmpty()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 NavigableMap higherEntry() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。