HashMap 源码解析1、构造函数

HashMap 源码解析2、put 相关函数java

类结构

image.png

看到HashMap 的类结构,确定会有个疑问,问什么HashMap 继承了AbstractMap 还实现了Map 接口?
我当时也很遗憾,因而我就查了一下,结果是个乌龙。“据java集合框架的创始人Josh Bloch描述,这样的写法是一个失误;最开始写java集合框架的时候,他认为这样写,在某些地方多是有价值的,直到他意识到错了。来自于markdown

构造函数

public class HashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Cloneable, Serializable {
    
    /** * 默认的负载因子 */
    static final float DEFAULT_LOAD_FACTOR = 0.75f;
    
    int threshold;//扩容伐值
    
    final float loadFactor;//负载因子默认为 0.75
    
    public HashMap() {
        this.loadFactor = DEFAULT_LOAD_FACTOR; 
        // all other fields defaulted
    }
    
    public HashMap(int initialCapacity) {
        this(initialCapacity, DEFAULT_LOAD_FACTOR);
    }

    /** * @param initialCapacity 初始容量 * @param 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(Map<? extends K, ? extends V> m) {
        this.loadFactor = DEFAULT_LOAD_FACTOR;
        putMapEntries(m, false);
    }
}
复制代码

HashMap(int initialCapacity, float loadFactor) 构造函数

前两个没什么好讲的,咱们直接看第3个 HashMap(int initialCapacity, float loadFactor)
这里的重点就是 int tableSizeFor(int cap)函数。框架

tableSizeFor(int cap) 函数

tableSizeFor(int cap) 的做用是返回 大于等于cap 且 最接近cap 的2的幂次方的值函数

static final int MAXIMUM_CAPACITY = 1 << 30;
    /** * Returns a power of two size for the given target capacity. * 返回 大于等于cap 且 最接近cap 的2的幂次方的值 */
    static final int tableSizeFor(int cap) {
        int n = cap - 1;
        n |= n >>> 1;
        n |= n >>> 2;
        n |= n >>> 4;
        n |= n >>> 8;
        n |= n >>> 16;
        return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
    }
复制代码

咱们分步骤解析一下这个函数:oop

  1. >>> 无符号右移运算符,高位用0 填充。以下:
a = 1010
a >>> 1 = 0101
复制代码
  1. | 若是相对应位都是 0,则结果为 0,不然为 1。以下:
a     = 1010
b     = 0011
------------
a | b = 1011
复制代码
  1. |= , a |= b 等同于 a = a|b
这时候咱们就能看懂 `n |= n >>> 1`; 等同于 `n = n | n >>> 1` 
复制代码
  1. int n = cap - 1; 是由于若是cap不减1,当 cap 原本就是2次幂数值,就会致使返回的结果为 cap*2 。post

  2. 咱们带入一个值看下运行结果,假设 cap = 20this

static final int tableSizeFor(int cap) {
        System.out.println("cap = "+ Integer.toBinaryString(cap));
        int n = cap - 1;
        System.out.println("n = "+ Integer.toBinaryString(n));
        n |= n >>> 1;
        System.out.println("n1 = "+ Integer.toBinaryString(n));
        n |= n >>> 2;
        System.out.println("n2 = "+ Integer.toBinaryString(n));
        n |= n >>> 4;
        System.out.println("n4 = "+ Integer.toBinaryString(n));
        n |= n >>> 8;
        System.out.println("n8 = "+ Integer.toBinaryString(n));
        n |= n >>> 16;
        System.out.println("n16 = "+ Integer.toBinaryString(n));
        System.out.println("n+1 = "+ Integer.toBinaryString(n+1));
        return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
    }
    
    @Test
    public void tableSizeForTest(){
        System.out.println("tableSizeFor:"+ tableSizeFor(20));
    }
复制代码

我这里直接把tableSizeFor(int cap) 拷贝出来,而后添加了日志。结果以下:spa

cap = 10100
n   = 10011
n1  = 11011   (10011 | 01001)
n2  = 11111   (11011 | 01101)
n4  = 11111   (11111 | 01111)
n8  = 11111   (11111 | 01111)
n16 = 11111   (11111 | 01111)
n+1 = 100000  (11111 + 1)
tableSizeFor:32
复制代码

HashMap(Map<? extends K, ? extends V> m) 构造函数

咱们来看下最后一个构造函数,参数是一个Map ,loadFactor 设置为默认的 0.75,而后putMapEntries(m, false) 函数,把参数Map 的值拷贝到构造的HashMap 中去。
接着咱们看下putMapEntries(m, false) 这个函数的具体实现.net

putMapEntries(m, false) 函数
/** * 在 putAll 和 构造函数 中被调用 * * @param m the map * @param 构造函数调用是传 false,不然传true */
    final void putMapEntries(Map<? extends K, ? extends V> m, boolean evict) {
        int s = m.size();
        if (s > 0) {
            if (table == null) { // 构造函数调用是 table = null
                float ft = ((float)s / loadFactor) + 1.0F;
                int t = ((ft < (float)MAXIMUM_CAPACITY) ?
                         (int)ft : MAXIMUM_CAPACITY);
                if (t > threshold)
                    threshold = tableSizeFor(t);
            }
            else if (s > threshold)
                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);
            }
        }
    }
复制代码

能够看到,当构造函数调用putMapEntries(Map<? extends K, ? extends V> m, boolean evict) 函数时,经过参数map 的size 设置threshold ,而后调用putVal() 函数设置内容。putVal() 咱们在后面讲 put 的时候再具体分析。日志

小结

咱们看完HashMap 的构造函数,能够知道他们的主要做用就是 设置loadFactorthreshold

  • loadFactor 负载因子, 通常都不会设置,默认为0.75
  • threshold 扩容伐值,使用 initialCapacity或者 map.size 经过tableSizeFor(int cap) 函数获得。为大于等于且最接近的2的幂次方的值
相关文章
相关标签/搜索