Uses of Class
java.util.concurrent.ConcurrentHashMap.KeySetView
-
Packages that use ConcurrentHashMap.KeySetView 软件包 描述 java.util.concurrent 实用程序类通常用于并发编程。 -
-
Uses of ConcurrentHashMap.KeySetView in java.util.concurrent
Methods in java.util.concurrent that return ConcurrentHashMap.KeySetView Modifier and Type 方法 描述 ConcurrentHashMap.KeySetView<K,V>
ConcurrentHashMap. keySet()
返回此地图中包含的键的Set
视图。ConcurrentHashMap.KeySetView<K,V>
ConcurrentHashMap. keySet(V mappedValue)
返回此地图中键的Set
视图,使用给定的通用映射值进行任何添加(即Collection.add(E)
和Collection.addAll(Collection)
)。static <K> ConcurrentHashMap.KeySetView<K,Boolean>
ConcurrentHashMap. newKeySet()
创建一个新的Set
,由给定类型的ConcurrentHashMap支持Boolean.TRUE
。static <K> ConcurrentHashMap.KeySetView<K,Boolean>
ConcurrentHashMap. newKeySet(int initialCapacity)
创建一个新的Set
由ConcurrentHashMap支持从给定的类型到Boolean.TRUE
。
-