Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aef66b4 commit 58ecde3Copy full SHA for 58ecde3
MD/HashMap.md
@@ -4,7 +4,7 @@
4
5

6
7
-如图所示,HashMap 底层是基于数据和链表实现的。其中有两个重要的参数:
+如图所示,HashMap 底层是基于数组和链表实现的。其中有两个重要的参数:
8
9
- 容量
10
- 负载因子
@@ -41,4 +41,4 @@ get 和 put 类似,也是将传入的 Key 计算出 index ,如果该位置
41
42
大大提高了查询效率。
43
44
-多线程场景下推荐使用 [ConcurrentHashMap](https://github.com/crossoverJie/Java-Interview/blob/master/MD/ConcurrentHashMap.md)。
+多线程场景下推荐使用 [ConcurrentHashMap](https://github.com/crossoverJie/Java-Interview/blob/master/MD/ConcurrentHashMap.md)。
0 commit comments