看源码之前,我们知道HashTable是同步的,是线程安全的。HashMap是不同步的,也就是线程不安全的。且常见的资料书与八股文中都会讲到二者的默认初始容量与扩容机制。我们来看看源码,看看能找出什么端倪。
源码如下:
- public class Hashtable
- extends Dictionary
- implements Map
, Cloneable, java.io.Serializable { -
- private transient Entry,?>[] table;
-
- private transient int count;
-
- private int threshold;
-
- private float loadFactor;
-
- private transient int modCount = 0;
-
- /** use serialVersionUID from JDK 1.0.2 for interoperability */
- @java.io.Serial
- private static final long serialVersionUID = 1421746759512286392L;
-
-
- public Hashtable(int initialCapacity, float loadFactor) {
- if (initialCapacity < 0)
- throw new IllegalArgumentException("Illegal Capacity: "+
- initialCapacity);
- if (loadFactor <= 0 || Float.isNaN(loadFactor))
- throw new IllegalArgumentException("Illegal Load: "+loadFactor);
-
- if (initialCapacity==0)
- initialCapacity = 1;
- this.loadFactor = loadFactor;
- table = new Entry,?>[initialCapacity];
- threshold = (int)Math.min(initialCapacity * loadFactor, MAX_ARRAY_SIZE + 1);
- }
-
-
- public Hashtable(int initialCapacity) {
- this(initialCapacity, 0.75f);
- }
-
-
- public Hashtable() {
- this(11, 0.75f);
- }
-
-
- public Hashtable(Map extends K, ? extends V> t) {
- this(Math.max(2*t.size(), 11), 0.75f);
- putAll(t);
- }
-
-
- Hashtable(Void dummy) {}
-
-
- public synchronized int size() {
- return count;
- }
-
-
- public synchronized boolean isEmpty() {
- return count == 0;
- }
-
-
- public synchronized Enumeration
keys() { - return this.
getEnumeration(KEYS); - }
-
-
- public synchronized Enumeration
elements() { - return this.
getEnumeration(VALUES); - }
-
- public synchronized boolean contains(Object value) {
- if (value == null) {
- throw new NullPointerException();
- }
-
- Entry,?> tab[] = table;
- for (int i = tab.length ; i-- > 0 ;) {
- for (Entry,?> e = tab[i] ; e != null ; e = e.next) {
- if (e.value.equals(value)) {
- return true;
- }
- }
- }
- return false;
- }
-
-
- public boolean containsValue(Object value) {
- return contains(value);
- }
-
-
- public synchronized boolean containsKey(Object key) {
- Entry,?> tab[] = table;
- int hash = key.hashCode();
- int index = (hash & 0x7FFFFFFF) % tab.length;
- for (Entry,?> e = tab[index] ; e != null ; e = e.next) {
- if ((e.hash == hash) && e.key.equals(key)) {
- return true;
- }
- }
- return false;
- }
- .............此处省略下面的其他方法.........
-
- }
跟着源码看多了的兄弟们肯定了解这其中透露的信息与原理,我们一起研究一下hashtable的构造方法:
- public Hashtable(int initialCapacity, float loadFactor) {
- if (initialCapacity < 0)
- throw new IllegalArgumentException("Illegal Capacity: "+
- initialCapacity);
- if (loadFactor <= 0 || Float.isNaN(loadFactor))
- throw new IllegalArgumentException("Illegal Load: "+loadFactor);
-
- if (initialCapacity==0)
- initialCapacity = 1;
- this.loadFactor = loadFactor;
- table = new Entry,?>[initialCapacity];
- threshold = (int)Math.min(initialCapacity * loadFactor, MAX_ARRAY_SIZE + 1);
- }
-
-
- public Hashtable(int initialCapacity) {this(initialCapacity, 0.75f);}
-
- public Hashtable() {this(11, 0.75f);}
-
- public Hashtable(Map extends K, ? extends V> t) {this(Math.max(2*t.size(), 11), 0.75f);putAll(t);}
- Hashtable(Void dummy) {}
源码给出的构造方法总共是五种,其中默认的没有给初始化容量initialCapacity作为构造参数的方法中显示this(11,0.75f)也就是说默认的容量是11,负载系数是0.75f。我们还需要注意的是第一个构造方法中显示出来的
threshold = (int)Math.min(initialCapacity * loadFactor, MAX_ARRAY_SIZE + 1);
我们的散列控制阀threshold,负载因子乘以初始化容量的值与
private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
也即是Integer能代表的最大数2的31次方减一再加一(就是拿当前可装载的最多数与2的31次方比较)相比较,如果表的大小比他大时整个哈希表会重新散列,这个就是比较有意思的了,因为会涉及扩容,看看源码中的rehash方法:
- @SuppressWarnings("unchecked")
- protected void rehash() {
- int oldCapacity = table.length;
- Entry,?>[] oldMap = table;
-
- // overflow-conscious code
- int newCapacity = (oldCapacity << 1) + 1;
- if (newCapacity - MAX_ARRAY_SIZE > 0) {
- if (oldCapacity == MAX_ARRAY_SIZE)
- // Keep running with MAX_ARRAY_SIZE buckets
- return;
- newCapacity = MAX_ARRAY_SIZE;
- }
- Entry,?>[] newMap = new Entry,?>[newCapacity];
-
- modCount++;
- threshold = (int)Math.min(newCapacity * loadFactor, MAX_ARRAY_SIZE + 1);
- table = newMap;
-
- for (int i = oldCapacity ; i-- > 0 ;) {
- for (Entry
old = (Entry)oldMap[i] ; old != null ; ) { - Entry
e = old; - old = old.next;
-
- int index = (e.hash & 0x7FFFFFFF) % newCapacity;
- e.next = (Entry
)newMap[index]; - newMap[index] = e;
- }
- }
- }
-
- private void addEntry(int hash, K key, V value, int index) {
- Entry,?> tab[] = table;
- if (count >= threshold) {
- // Rehash the table if the threshold is exceeded
- rehash();
-
- tab = table;
- hash = key.hashCode();
- index = (hash & 0x7FFFFFFF) % tab.length;
- }
-
- // Creates the new entry.
- @SuppressWarnings("unchecked")
- Entry
e = (Entry) tab[index]; - tab[index] = new Entry<>(hash, key, value, e);
- count++;
- modCount++;
- }
其实我们能发现,一般扩容走的都是上面的
int newCapacity = (oldCapacity << 1) + 1;
到
Entry,?>[] newMap = new Entry,?>[newCapacity];
modCount++;
threshold = (int)Math.min(newCapacity * loadFactor, MAX_ARRAY_SIZE + 1);
table = newMap;
不会超过integer所能代表的最大数的,所以扩容机制就是先比较有没有2的31次方大,没有就扩容成2倍的旧容量加1。
我们再回头看看除了hashtable的构造方法外的其他方法,基本上独立搓出来的方法都是添加了同步关键字synchronized :
- public synchronized int size() {
- return count;
- }
-
-
- public synchronized boolean isEmpty() {
- return count == 0;
- }
-
-
- public synchronized Enumeration
keys() { - return this.
getEnumeration(KEYS); - }
-
-
- public synchronized Enumeration
elements() { - return this.
getEnumeration(VALUES); - }
-
- public synchronized boolean contains(Object value) {
- if (value == null) {
- throw new NullPointerException();
- }
-
- Entry,?> tab[] = table;
- for (int i = tab.length ; i-- > 0 ;) {
- for (Entry,?> e = tab[i] ; e != null ; e = e.next) {
- if (e.value.equals(value)) {
- return true;
- }
- }
- }
- return false;
- }
这就是同步的且线程安全的原因,但是同步又会很大的影响速度,在并发要求不高的环境里,它的效率要远远低于hashmap,但是源码里给出了解决方案:
As of the Java 2 platform v1.2, this class was retrofitted to implement the Map interface, making it a member of the Java Collections Framework. Unlike the new collection implementations, Hashtable is synchronized. If a thread-safe implementation is not needed, it is recommended to use HashMap in place of Hashtable. If a thread-safe highly-concurrent implementation is desired, then it is recommended to use java.util.concurrent.ConcurrentHashMap in place of Hashtable.
从 Java 2 平台 v1.2 开始,该类被改进为实现Map接口,使其成为Java Collections Framework的成员。与新的集合实现不同, Hashtable是同步的。如果不需要线程安全的实现,建议使用HashMap代替Hashtable 。如果需要线程安全的高并发实现,则建议使用java.util.concurrent.ConcurrentHashMap代替Hashtable 。
对于这个ConcurrentHashMap 的源码以后再说!
源码如下:
- public class HashMap
extends AbstractMap - implements Map
, Cloneable, Serializable { -
- @java.io.Serial
- private static final long serialVersionUID = 362498820763181265L;
-
-
- static final int DEFAULT_INITIAL_CAPACITY = 1 << 4; // aka 16
-
-
- static final int MAXIMUM_CAPACITY = 1 << 30;
-
-
- static final float DEFAULT_LOAD_FACTOR = 0.75f;
-
-
- static final int TREEIFY_THRESHOLD = 8;
-
-
- static final int UNTREEIFY_THRESHOLD = 6;
-
-
- static final int MIN_TREEIFY_CAPACITY = 64;
-
- static class Node
implements Map.Entry { - final int hash;
- final K key;
- V value;
- Node
next; -
- Node(int hash, K key, V value, Node
next) { - this.hash = hash;
- this.key = key;
- this.value = value;
- this.next = next;
- }
-
- public final K getKey() { return key; }
- public final V getValue() { return value; }
- public final String toString() { return key + "=" + value; }
-
- public final int hashCode() {
- return Objects.hashCode(key) ^ Objects.hashCode(value);
- }
-
- public final V setValue(V newValue) {
- V oldValue = value;
- value = newValue;
- return oldValue;
- }
-
- public final boolean equals(Object o) {
- if (o == this)
- return true;
-
- return o instanceof Map.Entry, ?> e
- && Objects.equals(key, e.getKey())
- && Objects.equals(value, e.getValue());
- }
- }
-
-
- static final int hash(Object key) {
- int h;
- return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
- }
-
-
- static Class> comparableClassFor(Object x) {
- if (x instanceof Comparable) {
- Class> c; Type[] ts, as; ParameterizedType p;
- if ((c = x.getClass()) == String.class) // bypass checks
- return c;
- if ((ts = c.getGenericInterfaces()) != null) {
- for (Type t : ts) {
- if ((t instanceof ParameterizedType) &&
- ((p = (ParameterizedType) t).getRawType() ==
- Comparable.class) &&
- (as = p.getActualTypeArguments()) != null &&
- as.length == 1 && as[0] == c) // type arg is c
- return c;
- }
- }
- }
- return null;
- }
-
-
- @SuppressWarnings({"rawtypes","unchecked"}) // for cast to Comparable
- static int compareComparables(Class> kc, Object k, Object x) {
- return (x == null || x.getClass() != kc ? 0 :
- ((Comparable)k).compareTo(x));
- }
-
-
- static final int tableSizeFor(int cap) {
- int n = -1 >>> Integer.numberOfLeadingZeros(cap - 1);
- return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
- }
-
-
- transient Node
[] table; -
-
- transient Set
> entrySet; -
-
- transient int size;
-
- transient int modCount;
-
- int threshold;
-
- final float loadFactor;
-
- public HashMap(int initialCapacity, float loadFactor) {
- if (initialCapacity < 0)
- throw new IllegalArgumentException("Illegal initial capacity: " +
- initialCapacity);
- if (initialCapacity > MAXIMUM_CAPACITY)
- initialCapacity = MAXIMUM_CAPACITY;
- if (loadFactor <= 0 || Float.isNaN(loadFactor))
- throw new IllegalArgumentException("Illegal load factor: " +
- loadFactor);
- this.loadFactor = loadFactor;
- this.threshold = tableSizeFor(initialCapacity);
- }
-
-
- public HashMap(int initialCapacity) {
- this(initialCapacity, DEFAULT_LOAD_FACTOR);
- }
-
- public HashMap() {
- this.loadFactor = DEFAULT_LOAD_FACTOR; // all other fields defaulted
- }
-
- public HashMap(Map extends K, ? extends V> m) {
- this.loadFactor = DEFAULT_LOAD_FACTOR;
- putMapEntries(m, false);
- }
-
- final void putMapEntries(Map extends K, ? extends V> m, boolean evict) {
- int s = m.size();
- if (s > 0) {
- if (table == null) { // pre-size
- float ft = ((float)s / loadFactor) + 1.0F;
- int t = ((ft < (float)MAXIMUM_CAPACITY) ?
- (int)ft : MAXIMUM_CAPACITY);
- if (t > threshold)
- threshold = tableSizeFor(t);
- } else {
- // Because of linked-list bucket constraints, we cannot
- // expand all at once, but can reduce total resize
- // effort by repeated doubling now vs later
- while (s > threshold && table.length < MAXIMUM_CAPACITY)
- resize();
- }
-
- for (Map.Entry extends K, ? extends V> e : m.entrySet()) {
- K key = e.getKey();
- V value = e.getValue();
- putVal(hash(key), key, value, false, evict);
- }
- }
- }
- .................
-
- }
我们可以在这段源码里看到许多信息,比如默认的各参数的值:
static final int DEFAULT_INITIAL_CAPACITY = 1 << 4; // aka 1;
static final int MAXIMUM_CAPACITY = 1 << 30;
static final float DEFAULT_LOAD_FACTOR = 0.75f;
static final int TREEIFY_THRESHOLD = 8;
static final int UNTREEIFY_THRESHOLD = 6;
static final int MIN_TREEIFY_CAPACITY = 64;
扩容机制也可以在源码里找到:
- final Node
[] resize() { - Node
[] oldTab = table; - int oldCap = (oldTab == null) ? 0 : oldTab.length;
- int oldThr = threshold;
- int newCap, newThr = 0;
- if (oldCap > 0) {
- if (oldCap >= MAXIMUM_CAPACITY) {
- threshold = Integer.MAX_VALUE;
- return oldTab;
- }
- else if ((newCap = oldCap << 1) < MAXIMUM_CAPACITY &&
- oldCap >= DEFAULT_INITIAL_CAPACITY)
- newThr = oldThr << 1; // double threshold
- }
- else if (oldThr > 0) // initial capacity was placed in threshold
- newCap = oldThr;
- else { // zero initial threshold signifies using defaults
- newCap = DEFAULT_INITIAL_CAPACITY;
- newThr = (int)(DEFAULT_LOAD_FACTOR * DEFAULT_INITIAL_CAPACITY);
- }
- if (newThr == 0) {
- float ft = (float)newCap * loadFactor;
- newThr = (newCap < MAXIMUM_CAPACITY && ft < (float)MAXIMUM_CAPACITY ?
- (int)ft : Integer.MAX_VALUE);
- }
- threshold = newThr;
- @SuppressWarnings({"rawtypes","unchecked"})
- Node
[] newTab = (Node[])new Node[newCap]; - table = newTab;
- if (oldTab != null) {
- for (int j = 0; j < oldCap; ++j) {
- Node
e; - if ((e = oldTab[j]) != null) {
- oldTab[j] = null;
- if (e.next == null)
- newTab[e.hash & (newCap - 1)] = e;
- else if (e instanceof TreeNode)
- ((TreeNode
)e).split(this, newTab, j, oldCap); - else { // preserve order
- Node
loHead = null, loTail = null; - Node
hiHead = null, hiTail = null; - Node
next; - do {
- next = e.next;
- if ((e.hash & oldCap) == 0) {
- if (loTail == null)
- loHead = e;
- else
- loTail.next = e;
- loTail = e;
- }
- else {
- if (hiTail == null)
- hiHead = e;
- else
- hiTail.next = e;
- hiTail = e;
- }
- } while ((e = next) != null);
- if (loTail != null) {
- loTail.next = null;
- newTab[j] = loHead;
- }
- if (hiTail != null) {
- hiTail.next = null;
- newTab[j + oldCap] = hiHead;
- }
- }
- }
- }
- }
- return newTab;
- }
关于扩容方法的文档解释如下:
Initializes or doubles table size. If null, allocates in accord with initial capacity target held in field threshold. Otherwise, because we are using power-of-two expansion, the elements from each bin must either stay at same index, or move with a power of two offset in the new table.
初始化或加倍表大小。如果为空,则按照字段阈值中保存的初始容量目标进行分配。否则,因为我们使用二次幂展开,每个 bin 中的元素必须保持相同的索引,或者在新表中以二次幂的偏移量移动。
也就是说它的扩容机制就是按照二倍扩容。其实它的源码里也有它底层采用的数据结构,但是这里我主要寻找的是扩容机制,所以就先不聊这个。