JDK 7中的ConcurrentHashMap数据结构示意图
2021-12-02 16:07:28 0 举报
JDK 7中的ConcurrentHashMap数据结构示意图
作者其他创作
大纲/内容
Value : F
单向链表
1
.......
0
segments[14]
segments[1]
segments数组
2
3
Value : B
Value : A
key : \"5\"
next
..........
segments[3]
可扩容
key : \"age\"
......
Value : E
HashEntry[]
Value : \"壹哥\"
key : \"3\"
Value :30
独立加锁
key : \"7\"
key : \"name\"
HashEntry[] table数组
Value : C
segments[15]
JDK 7中ConcurrentHashMap数据结构示意图
初始化后不可再扩容,默认容量为16
segments[0]
key : \"8\"
segments[2]
key : \"1\"
segments[4]
0 条评论
下一页