Java 8 ConcurrentHashMap
2022-09-02 04:29:11
我观察到 ConcurrentHashMap 在 Java 8 中完全重写,更加“无锁”。我已经浏览了该方法的代码,发现没有显式锁定机制:get()
public V get(Object key) {
Node<K,V>[] tab; Node<K,V> e, p; int n, eh; K ek;
int h = spread(key.hashCode());
if ((tab = table) != null && (n = tab.length) > 0 &&
(e = tabAt(tab, (n - 1) & h)) != null) {
if ((eh = e.hash) == h) {
if ((ek = e.key) == key || (ek != null && key.equals(ek)))
return e.val;
}
else if (eh < 0)
return (p = e.find(h, key)) != null ? p.val : null;
while ((e = e.next) != null) {
if (e.hash == h &&
((ek = e.key) == key || (ek != null && key.equals(ek))))
return e.val;
}
}
return null;
}
问题:
如何从一个线程中看到其他线程对此哈希映射所做的修改,因为代码不在同步保护伞下(这将强制实施发生之前的关系)?
注意:整个 ConcurrentHashMap 是表的包装器:
transient volatile Node<K,V>[] table;
因此,table
是对数组的易失性引用,而不是对易失性元素数组的引用!这意味着,如果有人正在更新此数组中的元素,则在其他线程中不会看到修改。