Skip to content

Commit e4a9762

Browse files
committed
✨ Introducing new features.
1 parent a6d3421 commit e4a9762

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

MD/ConcurrentHashMap.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**更多 HashMap 与 ConcurrentHashMap 相关请查看[这里](https://crossoverjie.top/2018/07/23/java-senior/ConcurrentHashMap/)**
2+
13
# ConcurrentHashMap 实现原理
24

35
由于 `HashMap` 是一个线程不安全的容器,主要体现在容量大于`总量*负载因子`发生扩容时会出现环形链表从而导致死循环。

MD/HashMap.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**更多 HashMap 与 ConcurrentHashMap 相关请查看[这里](https://crossoverjie.top/2018/07/23/java-senior/ConcurrentHashMap/)**
2+
13
# HashMap 底层分析
24

35
> 以下基于 JDK1.7 分析。

0 commit comments

Comments
 (0)