TreeMap類ceilingEntry()方法
- ceilingEntry() 方法可在
java.util
包。 - ceilingEntry() 方法用於返回與大於或等於給定鍵元素 (ele) 的最小鍵元素鏈接的鍵值對。
- ceilingEntry() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
-
ceilingEntry() 方法可能會在 od 返回適當的鍵值對時拋出異常。
- ClassCastException:當給定的參數不兼容時,可能會拋出此異常。
- NullPointerException :當給定參數為空時可能會拋出此異常存在。
用法:
public Map.Entry ceilingEntry(Key ele);
參數:
Key ele
– 表示要在此 TreeMap 中檢查的關鍵元素 (ele)。
返回值:
該方法的返回類型是Map.Entry
,它返回關聯的鍵值對,其中最小鍵值元素大於或等於給定的參數(ele),否則返回 null。
例:
// Java program to demonstrate the example
// of Map.Entry ceilingEntry(Key ele) method of TreeMap
import java.util.*;
public class CeilingEntryOfTreeMap {
public static void main(String[] args) {
// Instantiates a TreeMap object
NavigableMap < Integer, String > tree_map = new TreeMap < Integer, String > ();
// By using put() method is to add
// key-value pairs in a TreeMap
tree_map.put(10, "C");
tree_map.put(20, "C++");
tree_map.put(50, "JAVA");
tree_map.put(40, "PHP");
tree_map.put(30, "SFDC");
// By using ceilingEntry(35) method is
// to return the key-value pairs mapped with
// the least key value element greater than or
// equal to the given key value element i.e.
// 40 = PHP
System.out.print("tree_map.ceilingEntry(35):");
System.out.println(tree_map.ceilingEntry(35));
}
}
輸出
tree_map.ceilingEntry(35):40=PHP
相關用法
- Java TreeMap ceilingEntry()、ceilingKey()用法及代碼示例
- Java TreeMap ceilingKey()用法及代碼示例
- Java TreeMap clear()用法及代碼示例
- Java TreeMap comparator()用法及代碼示例
- Java TreeMap containsValue()用法及代碼示例
- Java TreeMap containsKey()用法及代碼示例
- Java TreeMap clone()用法及代碼示例
- Java TreeMap putAll()用法及代碼示例
- Java TreeMap lastEntry()用法及代碼示例
- Java TreeMap remove()用法及代碼示例
- Java TreeMap floorEntry()用法及代碼示例
- Java TreeMap firstEntry()用法及代碼示例
- Java TreeMap get()用法及代碼示例
- Java TreeMap descendingKeySet()用法及代碼示例
- Java TreeMap higherEntry()用法及代碼示例
- Java TreeMap put()用法及代碼示例
- Java TreeMap lastKey()用法及代碼示例
- Java TreeMap size()用法及代碼示例
- Java TreeMap navigableKeySet()用法及代碼示例
- Java TreeMap tailMap()用法及代碼示例
注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java TreeMap ceilingEntry() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。