java.util.WeakHashMap.keySet()方法實例
keySet() 方法用於返回此映射中包含的鍵的set視圖。該set受映射支持,所以映射的變化反映在set中,反之亦然。
聲明
以下是java.util.WeakHashMap.keySet()方法的聲明。
public Set<K> keySet()
參數
-
NA
返回值
方法調用返回此映射中包含的鍵的set視圖。
異常
-
NA
例子
下麵的例子顯示java.util.WeakHashMap.keySet()方法的使用。
package com.yiibai; import java.util.Map; import java.util.WeakHashMap; import java.util.Set; public class WeakHashMapDemo { public static void main(String[] args) { Map<String, String> weakHashMap = new WeakHashMap<String, String>(); // put keys and values in the Map weakHashMap.put("1", "first"); weakHashMap.put("2", "two"); weakHashMap.put("3", "three"); // printing the contents of the Map System.out.println("Contents of the Map"); System.out.println(weakHashMap); // populating the set Set set = weakHashMap.keySet(); System.out.println("Contents of the set"); System.out.println(set); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Contents of the Map {1=first, 2=two, 3=three} Contents of the set [1, 2, 3]