1.hashmap put方法的实现: public V put(K key, V value) { if (key == null) return putForNullKey(value); int hash = hash(key); int i = indexFor(hash, table.length); for (Entry<K,V> e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash &&am…
HashMap底层实现 HashMap底层数据结构如下图,HashMap由“hash函数+数组+单链表”3个要素构成 通过写一个迷你版的HashMap来深刻理解 MyMap接口,定义一个接口,对外暴露快速存取的方法,并定义了一个内部接口Entry. publicinterface MyMap<K,V> { public V put(K k, V v); public V get(K k); publicinterface Entry<K, V>{ public K getKey()…