描述
這個ceilingEntry(K key)方法用於返回與大於或等於給定鍵的最小鍵關聯的鍵值映射,如果沒有這樣的鍵,則返回 null。
聲明
以下是聲明java.util.TreeMap.ceilingEntry()方法。
public Map.Entry<K,V> ceilingEntry(K key)
參數
key- 這是要匹配的關鍵。
返回值
方法調用返回一個最小鍵大於或等於 key 的條目,如果沒有這樣的鍵,則返回 null。
異常
ClassCastException- 如果指定的鍵無法與映射中當前的鍵進行比較,則拋出異常。
NullPointerException- 如果指定的鍵為空並且此映射使用自然排序,或者其比較器不允許空鍵,則拋出異常。
示例
下麵的例子展示了 java.util.TreeMap.ceilingEntry() 方法的用法。
package com.tutorialspoint;
import java.util.*;
public class TreeMapDemo {
public static void main(String[] args) {
// creating tree map
NavigableMap<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("Ceiling entry for 4:"+ treemap.ceilingEntry(4));
System.out.println("Ceiling entry for 5:"+ treemap.ceilingEntry(5));
}
}
讓我們編譯並運行上麵的程序,這將產生以下結果。
Ceiling entry for 4:5=five Ceiling entry for 5:5=five
相關用法
- Java java.util.TreeMap.ceilingKey()用法及代碼示例
- Java java.util.TreeMap.comparator()用法及代碼示例
- Java java.util.TreeMap.clear()用法及代碼示例
- Java java.util.TreeMap.clone()用法及代碼示例
- Java java.util.TreeMap.containsKey()用法及代碼示例
- Java java.util.TreeMap.containsValue()用法及代碼示例
- Java java.util.TreeMap.navigableKeySet()用法及代碼示例
- Java java.util.TreeMap.remove()用法及代碼示例
- Java java.util.TreeMap.firstKey()用法及代碼示例
- Java java.util.TreeMap.size()用法及代碼示例
- Java java.util.TreeMap.floorEntry()用法及代碼示例
- Java java.util.TreeMap.lastKey()用法及代碼示例
- Java java.util.TreeMap.put()用法及代碼示例
- Java java.util.TreeMap.keySet()用法及代碼示例
- Java java.util.TreeMap.putAll()用法及代碼示例
- Java java.util.TreeMap.floorKey()用法及代碼示例
- Java java.util.TreeMap.firstEntry()用法及代碼示例
- Java java.util.TreeMap.pollFirstEntry()用法及代碼示例
- Java java.util.TreeMap.entrySet()用法及代碼示例
- Java java.util.TreeMap.descendingKeySet()用法及代碼示例
注:本文由純淨天空篩選整理自 java.util.TreeMap.ceilingEntry() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。