K - Type of keysV - Type of valuespublic class KeyComparatorHashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Cloneable, Serializable
HashMap but supports the
comparison of keys using a KeyComparator.AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>| 构造器和说明 |
|---|
KeyComparatorHashMap(int initialCapacity,
float loadFactor,
KeyComparator<K> keyComparator)
Constructs an empty HashMap with the specified initial
capacity and load factor.
|
KeyComparatorHashMap(int initialCapacity,
KeyComparator<K> keyComparator)
Constructs an empty HashMap with the specified initial
capacity and the default load factor (0.75).
|
KeyComparatorHashMap(KeyComparator<K> keyComparator)
Constructs an empty HashMap with the default initial capacity
(16) and the default load factor (0.75).
|
KeyComparatorHashMap(Map<? extends K,? extends V> m,
KeyComparator<K> keyComparator)
Constructs a new HashMap with the same mappings as the
specified Map.
|
| 限定符和类型 | 方法和说明 |
|---|---|
void |
clear()
Removes all mappings from this map.
|
Object |
clone()
Returns a shallow copy of this HashMap instance: the keys and
values themselves are not cloned.
|
boolean |
containsKey(Object key)
Returns true if this map contains a mapping for the
specified key.
|
boolean |
containsValue(Object value)
Returns true if this map maps one or more keys to the
specified value.
|
Set<Map.Entry<K,V>> |
entrySet()
Returns a collection view of the mappings contained in this map.
|
V |
get(Object key)
Returns the value to which the specified key is mapped in this identity
hash map, or null if the map contains no mapping for this key.
|
int |
getModCount()
Get the number of times this HashMap has been structurally modified
Structural modifications are those that change the number of mappings in
the HashMap or otherwise modify its internal structure (e.g.,
rehash).
|
boolean |
isEmpty()
Returns true if this map contains no key-value mappings.
|
V |
put(K key,
V value)
Associates the specified value with the specified key in this map.
|
void |
putAll(Map<? extends K,? extends V> m)
Copies all of the mappings from the specified map to this map
These mappings will replace any mappings that
this map had for any of the keys currently in the specified map.
|
V |
remove(Object key)
Removes the mapping for this key from this map if present.
|
int |
size()
Returns the number of key-value mappings in this map.
|
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, keySet, merge, putIfAbsent, remove, replace, replace, replaceAll, valuespublic KeyComparatorHashMap(int initialCapacity,
float loadFactor,
KeyComparator<K> keyComparator)
initialCapacity - The initial capacity.loadFactor - The load factor.keyComparator - the map key comparator.IllegalArgumentException - if the initial capacity is negative
or the load factor is nonpositive.public KeyComparatorHashMap(int initialCapacity,
KeyComparator<K> keyComparator)
initialCapacity - the initial capacity.keyComparator - the map key comparator.IllegalArgumentException - if the initial capacity is negative.public KeyComparatorHashMap(KeyComparator<K> keyComparator)
keyComparator - the map key comparator.public KeyComparatorHashMap(Map<? extends K,? extends V> m, KeyComparator<K> keyComparator)
m - the map whose mappings are to be placed in this map.keyComparator - the comparatorNullPointerException - if the specified map is null.public int getModCount()
public int size()
public boolean isEmpty()
public V get(Object key)
get 在接口中 Map<K,V>get 在类中 AbstractMap<K,V>key - the key whose associated value is to be returned.put(Object, Object)public boolean containsKey(Object key)
containsKey 在接口中 Map<K,V>containsKey 在类中 AbstractMap<K,V>key - The key whose presence in this map is to be testedpublic V put(K key, V value)
put 在接口中 Map<K,V>put 在类中 AbstractMap<K,V>key - key with which the specified value is to be associated.value - value to be associated with the specified key.public void putAll(Map<? extends K,? extends V> m)
putAll 在接口中 Map<K,V>putAll 在类中 AbstractMap<K,V>m - mappings to be stored in this map.NullPointerException - if the specified map is null.public V remove(Object key)
remove 在接口中 Map<K,V>remove 在类中 AbstractMap<K,V>key - key whose mapping is to be removed from the map.public void clear()
public boolean containsValue(Object value)
containsValue 在接口中 Map<K,V>containsValue 在类中 AbstractMap<K,V>value - value whose presence in this map is to be tested.public Object clone()
clone 在类中 AbstractMap<K,V>public Set<Map.Entry<K,V>> entrySet()
Copyright © 2022. All rights reserved.