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


Java ConcurrentHashMap newKeySet()用法及代码示例


ConcurrentHashMap 类的 newKeySet() 方法创建一个由 ConcurrentHashMap 从给定类型到 Boolean.TRUE 支持的新集合。

用法

public static <K> ConcurrentHashMap.KeySetView<K,Boolean> newKeySet()

public static <K> ConcurrentHashMap.KeySetView<K,Boolean> newKeySet(int initialCapacity)

参数

没有传递参数。

返回

新套装

抛出

不会抛出任何异常。

例子1

import java.util.Set;
import java.util.concurrent.*; 
  
class ConcurrentHashMapnewKeySetExample1 { 
    public static void main(String[] args) 
    { 
        Set<String> hashmap = ConcurrentHashMap.newKeySet();
        hashmap.add("AA");
        hashmap.add("BBB"); 
        hashmap.add("CCC"); 
        hashmap.add("DDD");  
        System.out.println(" Mappings:"+ hashmap); 
    } 
}

输出:

Mappings:[AA, CCC, BBB, DDD]

例子2

import java.util.Set;
import java.util.concurrent.*; 
  
class ConcurrentHashMapnewKeySetExample2  { 
    public static void main(String[] args) 
    { 
        Set<String> hashmap = ConcurrentHashMap.newKeySet(6);
        hashmap.add("AA");
        hashmap.add("BBB"); 
        hashmap.add("CCC"); 
        hashmap.add("DDD");  
        System.out.println(" Mappings:"+ hashmap); 
        System.out.println(" Mapping size:"+ hashmap.size()); 
    } 
}

输出:

Mappings:[AA, CCC, BBB, DDD]
 Mapping size:4




相关用法


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