java.util.TreeMap.higherEntry()方法實例
higherEntry(K key) 方法用於返回用最最的鍵,嚴格小於給定鍵大。返回null,如果不存在這樣的鍵的鍵 - 值映射關係。
聲明
以下是java.util.TreeMap.higherEntry()方法的聲明。
public Map.Entry<K,V> higherEntry(K key)
參數
-
key--這是要匹配的鍵。
返回值
方法調用返回的條目中最近的鍵大於key,或者null,如果不存在這樣的鍵
異常
-
ClassCastException--如果指定鍵不能與映射中的當前鍵進行比較,那麼拋出此異常。
-
NullPointerException--拋出此異常如果指定鍵為null,並且此映射使用自然順序,或者其比較器不允許使用null鍵。
例子
下麵的示例演示java.util.TreeMap.higherEntry()方法的用法。
package com.yiibai; import java.util.*; public class TreeMapDemo { public static void main(String[] args) { // creating tree map TreeMap<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"); // getting higher entry for key 4 System.out.println("Checking values of the map"); System.out.println("Value is: "+ treemap.higherEntry(4)); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Checking values of the map Value is: 5=five