java - concurrentHashMap源码中的readValueUnderLock(e)存在的意义?
巴扎黑
巴扎黑 2017-04-18 10:04:43
0
3
879
巴扎黑
巴扎黑

全部回覆(3)
迷茫
e.hash == hash && key.equals(e.key)

前面這一句說明了表裡有這個key的,你看看put方法,当valuenull的時候是會跑出異常的:

public V put(K key, V value) {
        Segment<K,V> s;
        if (value == null)
            throw new NullPointerException();
        int hash = hash(key);
        int j = (hash >>> segmentShift) & segmentMask;
        if ((s = (Segment<K,V>)UNSAFE.getObject          // nonvolatile; recheck
             (segments, (j << SSHIFT) + SBASE)) == null) //  in ensureSegment
            s = ensureSegment(j);
        return s.put(key, hash, value, false);
    }

我這是高版的,可能跟你的不一樣,但是也是值也是不能為空的。
所以:

if (v != null)
    return v;
return readValueUnderLock(e); // recheck

不為空可以直接傳回,如果為空則表示有其他執行緒在操作它。所以就加了一句。

public V get(Object key) {
        Segment<K,V> s; // manually integrate access methods to reduce overhead
        HashEntry<K,V>[] tab;
        int h = hash(key);
        long u = (((h >>> segmentShift) & segmentMask) << SSHIFT) + SBASE;
        if ((s = (Segment<K,V>)UNSAFE.getObjectVolatile(segments, u)) != null &&
            (tab = s.table) != null) {
            for (HashEntry<K,V> e = (HashEntry<K,V>) UNSAFE.getObjectVolatile
                     (tab, ((long)(((tab.length - 1) & h)) << TSHIFT) + TBASE);
                 e != null; e = e.next) {
                K k;
                if ((k = e.key) == key || (e.hash == h && key.equals(k)))
                    return e.value;
            }
        }
        return null;
    }

現在版本的get方法把HashEntry<K,V> e弄成UNSAFE.getObjectVolatile()获取,像是volatile的了

阿神

樓主可以把JDK升級一下,我用的1.8找了一下,没发现这段代码在ConcurrentHashMap中。

刘奇

物件初始的時候就是null,這個null並不是在程式中刻意賦值的。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板