java.util.TreeMap.containsKey()方法實例
containsKey(Object key) 方法用於返回“true”,如果此映射包含指定鍵的映射關係。
聲明
以下是java.util.TreeMap.containsKey()方法的聲明。
public boolean containsKey(Object key)
參數
-
key--這是要測試給定的鍵是否存在於此映射。
返回值
如果此映射包含指定鍵的映射關係的方法調用返回true。
異常
-
ClassCastException-- 如果指定鍵不能與映射中的當前鍵相比,這個異常被拋出。
-
NullPointerException-- 如果指定鍵為null,並且此映射使用自然排序,或者其比較器不允許使用null鍵,這個異常會被拋出。
例子
下麵的示例演示java.util.TreeMap.containsKey()方法的用法。
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("Checking key value 6"); System.out.println("Value for key 6 exists: "+ treemap.containsKey(6)); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Checking key value 6 Value for key 6 exists: true