1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Update ConcurrentHashMap.md

This commit is contained in:
shuang.kou 2020-06-11 18:43:41 +08:00
parent 02442de469
commit 5971fef9b6

View File

@ -1,4 +1,7 @@
> 本文来自公众号末读代码的投稿原文地址https://mp.weixin.qq.com/s/AHWzboztt53ZfFZmsSnMSw 。
上一篇文章介绍了 HashMap 源码,反响不错,也有很多同学发表了自己的观点,这次又来了,这次是 `ConcurrentHashMap `作为线程安全的HashMap ,它的使用频率也是很高。那么它的存储结构和实现原理是怎么样的呢?
## 1. ConcurrentHashMap 1.7
### 1. 存储结构