java.util.TreeMap.ceilingEntry()方法實例
ceilingEntry(K key) 方法用來返回與該鍵至少大於或等於給定鍵,如果不存在這樣的鍵的鍵 - 值映射,則返回null相關聯。
聲明
以下是java.util.TreeMap.ceilingEntry()方法的聲明。
public Map.Entry<K,V> ceilingEntry(K key)
參數
-
key-- 要匹配的鍵。
返回值
方法調用返回的最小鍵大於或等於鍵,則返回null的項,如果不存在這樣的鍵。
異常
-
ClassCastException-- 它拋出的異常,如果指定鍵不能與映射中的當前鍵進行比較。
-
NullPointerException-- 它拋出的異常,如果指定鍵為null,並且此映射使用自然順序,或者其比較器不允許使用null鍵。
例子
下麵的示例演示java.util.TreeMap.ceilingEntry()方法的用法。
package com.yiibai; 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