java.util.TreeMap.lowerKey()方法實例
lowerKey(K key) 方法用於返回最大鍵嚴格小於給定鍵,或null,如果不存在這樣的鍵
聲明
以下是java.util.TreeMap.lowerKey()方法的聲明。
public K lowerKey(K key)
參數
-
key--這是要檢查的鍵
返回值
方法調用返回比key最大鍵小的鍵,則返回null,如果不存在這樣的鍵
異常
-
ClassCastException--如果指定鍵不能與映射中的當前鍵進行比較拋出此異常。
-
NullPointerException--拋出此異常如果指定鍵為null,並且此映射使用自然順序,或者其比較器不允許使用null鍵。
例子
下麵的例子顯示java.util.TreeMap.lowerKey()方法的使用
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 lower key System.out.println("Checking lower key"); System.out.println("Value is: "+ treemap.lowerKey(5)); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Checking lower key Value is: 3
標簽: