| 类 | 说明 |
|---|---|
| DefaultMapEntry<K,V> |
默认的 map entry
|
| MyHashMap<K,V> |
自己实现的 hash map
(1)所有的 hash 值相同的元素,放在同一个桶中
(2)新增时
2.1 hash 值相同,且 equals() 的,则认为相同,使用替换。
|
| MyProgressiveReHashMap<K,V> |
自己实现的渐进式 rehash map
|
Copyright © 2020. All rights reserved.