java.util.WeakHashMap.keySet()


描述

所述的keySet()方法用来返回包含在此映射的键的集合图。该集由地图支持,因此对地图的更改将反映在集中,反之亦然。

声明

以下是java.util.WeakHashMap.keySet()方法的声明。

public Set<K> keySet()

参数

NA

返回值

方法调用返回此映射中包含的键的set视图。

异常

NA

实例

以下示例显示了java.util.WeakHashMap.keySet()方法的用法。

package com.tutorialspoint;

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]