Java中HashMap的原理分析

HashMap在Java开发中有着非常重要的角色地位,每一个Java程序员都应该了解HashMap。详细地阐述HashMap中的几个概念,并深入探讨HashMap的内部结构和实现细节,讨论HashMap的性能问题。

创新互联建站为您提适合企业的网站设计 让您的网站在搜索引擎具有高度排名,让您的网站具备超强的网络竞争力!结合企业自身,进行网站设计及把握,最后结合企业文化和具体宗旨等,才能创作出一份性化解决方案。从网站策划到网站制作、成都网站建设, 我们的网页设计师为您提供的解决方案。

我们先来看这样的一道面试题:

在 HashMap 中存放的一系列键值对,其中键为某个我们自定义的类型。放入 HashMap 后,我们在外部把某一个 key 的属性进行更改,然后我们再用这个 key 从 HashMap 里取出元素,这时候 HashMap 会返回什么?

文中已给出示例代码与答案,但关于HashMap的原理没有做出解释。

1. 特性

我们可以用任何类作为HashMap的key,但是对于这些类应该有什么限制条件呢?且看下面的代码:

 
 
  1. public class Person { 
  2.   private String name; 
  3.   
  4.   public Person(String name) { 
  5.     this.name = name; 
  6.   } 
  7.   
  8. Map testMap = new HashMap<>(); 
  9. testMap.put(new Person("hello"), "world"); 
  10. testMap.get(new Person("hello")); // ---> null 

本是想取出具有相等字段值Person类的value,结果却是null。对HashMap稍有了解的人看出来——Person类并没有override hashcode方法,导致其继承的是Object的hashcode(返回是其内存地址)。这也是为什么常用不变类如String(或Integer等)做为HashMap的key的原因。那么,HashMap是如何利用hashcode给key做快速索引的呢?

2. 原理

首先,我们来看《Thinking in Java》中一个简单HashMap的实现方案:

 
 
  1. //: containers/SimpleHashMap.java 
  2. // A demonstration hashed Map. 
  3. import java.util.*; 
  4. import net.mindview.util.*; 
  5.   
  6. public class SimpleHashMap extends AbstractMap { 
  7.  // Choose a prime number for the hash table size, to achieve a uniform distribution: 
  8.  static final int SIZE = 997; 
  9.  // You can't have a physical array of generics, but you can upcast to one: 
  10.  @SuppressWarnings("unchecked") 
  11.  LinkedList>[] buckets = 
  12.   new LinkedList[SIZE]; 
  13.  public V put(K key, V value) { 
  14.   V oldValue = null; 
  15.   int index = Math.abs(key.hashCode()) % SIZE; 
  16.   if(buckets[index] == null) 
  17.    buckets[index] = new LinkedList>(); 
  18.   LinkedList> bucket = buckets[index]; 
  19.   MapEntry pair = new MapEntry(key, value); 
  20.   boolean found = false; 
  21.   ListIterator> it = bucket.listIterator(); 
  22.   while(it.hasNext()) { 
  23.    MapEntry iPair = it.next(); 
  24.    if(iPair.getKey().equals(key)) { 
  25.     oldValue = iPair.getValue(); 
  26.     it.set(pair); // Replace old with new 
  27.     found = true; 
  28.     break; 
  29.    } 
  30.   } 
  31.   if(!found) 
  32.    buckets[index].add(pair); 
  33.   return oldValue; 
  34.  } 
  35.  public V get(Object key) { 
  36.   int index = Math.abs(key.hashCode()) % SIZE; 
  37.   if(buckets[index] == null) return null; 
  38.   for(MapEntry iPair : buckets[index]) 
  39.    if(iPair.getKey().equals(key)) 
  40.     return iPair.getValue(); 
  41.   return null; 
  42.  } 
  43.  public Set> entrySet() { 
  44.   Set> set= new HashSet>(); 
  45.   for(LinkedList> bucket : buckets) { 
  46.    if(bucket == null) continue; 
  47.    for(MapEntry mpair : bucket) 
  48.     set.add(mpair); 
  49.   } 
  50.   return set; 
  51.  } 
  52.  public static void main(String[] args) { 
  53.   SimpleHashMap m = 
  54.    new SimpleHashMap(); 
  55.   m.putAll(Countries.capitals(25)); 
  56.   System.out.println(m); 
  57.   System.out.println(m.get("ERITREA")); 
  58.   System.out.println(m.entrySet()); 
  59.  } 

SimpleHashMap构造一个hash表来存储key,hash函数是取模运算Math.abs(key.hashCode()) % SIZE,采用链表法解决hash冲突;buckets的每一个槽位对应存放具有相同(hash后)index值的Map.Entry,如下图所示:

JDK的HashMap的实现原理与之相类似,其采用链地址的hash表table存储Map.Entry:

 
 
  1. /** 
  2.  * The table, resized as necessary. Length MUST Always be a power of two. 
  3.  */ 
  4. transient Entry[] table = (Entry[]) EMPTY_TABLE; 
  5.   
  6. static class Entry implements Map.Entry { 
  7.   final K key; 
  8.   V value; 
  9.   Entry next; 
  10.   int hash; 
  11.   … 

Map.Entry的index是对key的hashcode进行hash后所得。当要get key对应的value时,则对key计算其index,然后在table中取出Map.Entry即可得到,具体参看代码:

 
 
  1. public V get(Object key) { 
  2.   if (key == null) 
  3.     return getForNullKey(); 
  4.   Entry entry = getEntry(key); 
  5.   
  6.   return null == entry ? null : entry.getValue(); 
  7.   
  8. final Entry getEntry(Object key) { 
  9.   if (size == 0) { 
  10.     return null; 
  11.   } 
  12.   
  13.   int hash = (key == null) ? 0 : hash(key); 
  14.   for (Entry e = table[indexFor(hash, table.length)]; 
  15.      e != null; 
  16.      ee = e.next) { 
  17.     Object k; 
  18.     if (e.hash == hash && 
  19.       ((k = e.key) == key || (key != null && key.equals(k)))) 
  20.       return e; 
  21.   } 
  22.   return null; 

可见,hashcode直接影响HashMap的hash函数的效率——好的hashcode会极大减少hash冲突,提高查询性能。同时,这也解释开篇提出的两个问题:如果自定义的类做HashMap的key,则hashcode的计算应涵盖构造函数的所有字段,否则有可能得到null。

文章名称:Java中HashMap的原理分析
当前路径:http://www.shufengxianlan.com/qtweb/news4/56204.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联