标签:方法 公式 shc pac ati 因此 机制 equal strong
一般使用ConcurrentHashMap,前二者因为在所有操作上加锁效率都比较差.
Hashtable 不允许键或值为 null 的,HashMap 的键值则都可以为 null。
Hashtable使用的是安全失败机制(fail-safe),这种机制会使此次读到的数据不一定是最新的数据。HashMap使用fail-fast.
ConcurrentHashMap由Segment 数组、HashEntry 组成.Segment 包含HashEntry,并 使用volatile修饰。
标签:方法 公式 shc pac ati 因此 机制 equal strong
原文地址:https://www.cnblogs.com/leonworld/p/12973935.html