当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.util.WeakHashMap.keySet()用法及代码示例



描述

这个keySet()方法用于返回此映射中包含的键的集合视图。该集合由Map支持,因此对Map的更改会反映在该集合中,反之亦然。

声明

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

public Set<K> keySet()

参数

NA

返回值

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

异常

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]

相关用法


注:本文由纯净天空筛选整理自 java.util.WeakHashMap.keySet() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。