當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。