前言

Github:https://github.com/HealerJean

博客:http://blog.healerjean.com

对象 key是否可以为空 value是否可以为空
HashMap
HashTable
ConcurrentHashMap

1、代码层面分析

1.1、从 HashMap 分析

key可以为空:

HashMapput的时候会调用hash()方法来计算 keyhashcode,可以从 hash 算法中看出key==nul l时返回的值为0。因此 keynull 时,hash 算法返回值为0,不会调用 keyhashcode方法。

value可以为空;

key都可以为空了,还在乎value吗,即使存在key,value为空怎么了。

// 代码1
static final int hash(Object key) { // 计算key的hash值
    int h;
    // 1.先拿到key的hashCode值; 2.将hashCode的高16位参与运算
    return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
}

1.2、从HashTable分析

value不可以为空 :

可以很清晰看到,直接就抛出异常了

key不可以为空:

key为空,在执行到int hash = key.hashCode()时同样会抛出NullPointerException异常

public synchronized V put(K key, V value) {
    // Make sure the value is not null
    if (value == null) {
        throw new NullPointerException();
    }

    // Makes sure the key is not already in the hashtable.
    Entry<?,?> tab[] = table;
    int hash = key.hashCode();
    int index = (hash & 0x7FFFFFFF) % tab.length;
    @SuppressWarnings("unchecked")
    Entry<K,V> entry = (Entry<K,V>)tab[index];
    for(; entry != null ; entry = entry.next) {
        if ((entry.hash == hash) && entry.key.equals(key)) {
            V old = entry.value;
            entry.value = value;
            return old;
        }
    }

    addEntry(hash, key, value, index);
    return null;
}

1.3、ConcurrentHashMap

这也太明显了吧,直接就抛出空指针异常了

 if (key == null || value == null) throw new NullPointerException();
 final V putVal(K key, V value, boolean onlyIfAbsent) {
        if (key == null || value == null) throw new NullPointerException();
        int hash = spread(key.hashCode());
        int binCount = 0;
        for (Node<K,V>[] tab = table;;) {
            Node<K,V> f; int n, i, fh;
            if (tab == null || (n = tab.length) == 0)
                tab = initTable();
            else if ((f = tabAt(tab, i = (n - 1) & hash)) == null) {
                if (casTabAt(tab, i, null,
                             new Node<K,V>(hash, key, value, null)))
                    break;                   // no lock when adding to empty bin
            }
            else if ((fh = f.hash) == MOVED)
                tab = helpTransfer(tab, f);
            else {
                V oldVal = null;
                synchronized (f) {
                    if (tabAt(tab, i) == f) {
                        if (fh >= 0) {
                            binCount = 1;
                            for (Node<K,V> e = f;; ++binCount) {
                                K ek;
                                if (e.hash == hash &&
                                    ((ek = e.key) == key ||
                                     (ek != null && key.equals(ek)))) {
                                    oldVal = e.val;
                                    if (!onlyIfAbsent)
                                        e.val = value;
                                    break;
                                }
                                Node<K,V> pred = e;
                                if ((e = e.next) == null) {
                                    pred.next = new Node<K,V>(hash, key,
                                                              value, null);
                                    break;
                                }
                            }
                        }
                        else if (f instanceof TreeBin) {
                            Node<K,V> p;
                            binCount = 2;
                            if ((p = ((TreeBin<K,V>)f).putTreeVal(hash, key,
                                                           value)) != null) {
                                oldVal = p.val;
                                if (!onlyIfAbsent)
                                    p.val = value;
                            }
                        }
                    }
                }
                if (binCount != 0) {
                    if (binCount >= TREEIFY_THRESHOLD)
                        treeifyBin(tab, i);
                    if (oldVal != null)
                        return oldVal;
                    break;
                }
            }
        }
        addCount(1L, binCount);
        return null;
    }

2、设计层面分析

个人理解:

1、HashMap本身使用 keyvaluenull 就不应该存在,

比如下面这行代码 ,我们还是不知道这个 null 是没有映射的 null 还是存的值就是 null

System.out.println(hashMap.get("1")); //null

2、null 指针本身就是一个让开发人员头大的问题,HashMap只在单线程中使用,不会存在修改了,有找不到的情况,但是多线程则的设计其实就更为复杂,既然复杂为什么不去掉呢,网上解释的什么 玩意。

3、在 HashMap中,因为它的设计就是给单线程用的,所以当我们 map.get(key) 返回 null 的时候,我们是可以通过map.contains(key) 检查来进行检测的,如果它返回 true,则认为是存了一个 null,否则就是因为没找到而返回了null

但是,像 ConcurrentHashMap,它是为并发而生的,它是要用在并发场景中的,当我们map.get(key)返回null的时候,是没办法通过通过map.contains(key)检查来准确的检测,因为在检测过程中可能会被其他线程锁修改,而导致检测结果并不可靠。

ContactAuthor