码迷,mamicode.com
首页 > 其他好文 > 详细

为什么Hashtable ConcurrentHashmap不支持key或者value为null

时间:2019-05-26 23:42:10      阅读:604      评论:0      收藏:0      [点我收藏+]

标签:判断   except   turn   对象   shm   存储结构   equal   value   checked   

  

  ConcurrentHashmap HashMapHashtable都是key-value存储结构,但他们有一个不同点是 ConcurrentHashmapHashtable不支持key或者valuenull,而HashMap是支持的。为什么会有这个区别?在设计上的目的是什么?

  ConcurrentHashmapHashtable都是支持并发的,这样会有一个问题,当你通过get(k)获取对应的value时,如果获取到的是null时,你无法判断,它是putk,v)的时候valuenull,还是这个key从来没有做过映射。HashMap是非并发的,可以通过contains(key)来做这个判断。而支持并发的Map在调用m.containskey)和m.get(key),m可能已经不同了。

HashMap.class:

 

// 此处计算key的hash值时,会判断是否为null,如果是,则返回0,即key为null的键值对
    // 的hash为0。因此一个hashmap对象只会存储一个key为null的键值对,因为它们的hash值都相同。
    static final int hash(Object key) {
        int h;
        return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
    }
    // 将键值对放入table中时,不会校验value是否为null。因此一个hashmap对象可以存储
    // 多个value为null的键值对
    public V put(K key, V value) {
        return putVal(hash(key), key, value, false, true);
    }
    final V putVal(int hash, K key, V value, boolean onlyIfAbsent,
                   boolean evict) {
        Node<K,V>[] tab; Node<K,V> p; int n, i;
        if ((tab = table) == null || (n = tab.length) == 0)
            n = (tab = resize()).length;
        if ((p = tab[i = (n - 1) & hash]) == null)
            tab[i] = newNode(hash, key, value, null);
        else {
            Node<K,V> e; K k;
            if (p.hash == hash &&
                ((k = p.key) == key || (key != null && key.equals(k))))
                e = p;
            else if (p instanceof TreeNode)
                e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
            else {
                for (int binCount = 0; ; ++binCount) {
                    if ((e = p.next) == null) {
                        p.next = newNode(hash, key, value, null);
                        if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
                            treeifyBin(tab, hash);
                        break;
                    }
                    if (e.hash == hash &&
                        ((k = e.key) == key || (key != null && key.equals(k))))
                        break;
                    p = e;
                }
            }
            if (e != null) { // existing mapping for key
                V oldValue = e.value;
                if (!onlyIfAbsent || oldValue == null)
                    e.value = value;
                afterNodeAccess(e);
                return oldValue;
            }
        }
        ++modCount;
        if (++size > threshold)
            resize();
        afterNodeInsertion(evict);
        return null;
    }

 

Hashtable.class:

public synchronized V put(K key, V value) {
        // 确保value不为空。这句代码过滤掉了所有value为null的键值对。因此Hashtable不能
        // 存储value为null的键值对
        if (value == null) {
            throw new NullPointerException();
        }
        // 确保key在table数组中尚未存在。
        Entry<?,?> tab[] = table;
        int hash = key.hashCode(); //在此处计算key的hash值,如果此处key为null,则直接抛出空指针异常。
        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;
}

 

为什么Hashtable ConcurrentHashmap不支持key或者value为null

标签:判断   except   turn   对象   shm   存储结构   equal   value   checked   

原文地址:https://www.cnblogs.com/heqiyoujing/p/10928334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!