当前位置:   article > 正文

jdk1.8 HashMap工作原理和扩容机制(源码解析)_hashmap 的扩容过程

hashmap 的扩容过程

目录

HashMap简介

HashMap的主要成员变量

HashMap的构造方法有四种

put(K key, V value)

扩容机制核心方法Node[] resize(),v>

负载因子loadFactor测试    

get(Object key)


HashMap简介

    HashMap在底层数据结构上采用了数组+链表+红黑树,通过散列映射来存储键值对数据因为在查询上使用散列码(通过键生成一个数字作为数组下标,这个数字就是hash code)所以在查询上的访问速度比较快,HashMap最多允许一对键值对的Key为Null,允许多对键值对的value为Null。它是非线程安全的。在排序上面是无序的。

 

HashMap的主要成员变量

transient Node<K,V>[] table:这是一个Node类型的数组(也有称作Hash桶),可以从下面源码中看到静态内部类Node在这边可以看做就是一个节点,多个Node节点构成链表,当链表长度大于8的时候转换为红黑树。

 

hashMap内存结构图

(图片来自www.importnew.com/20386.html)

transient int size:表示当前HashMap包含的键值对数量

transient int modCount:表示当前HashMap修改次数

int threshold:表示当前HashMap能够承受的最多的键值对数量,一旦超过这个数量HashMap就会进行扩容

final float loadFactor:负载因子,用于扩容

static final int DEFAULT_INITIAL_CAPACITY = 1 << 4:默认的table初始容量

static final float DEFAULT_LOAD_FACTOR = 0.75f:默认的负载因子

static final int TREEIFY_THRESHOLD = 8: 链表长度大于该参数转红黑树

static final int UNTREEIFY_THRESHOLD = 6: 当树的节点数小于等于该参数转成链表

介绍完了重要的几个参数后我们来看看HashMap的构造参数。

 

HashMap的构造方法有四种

  1. public HashMap() {
  2. this.loadFactor = DEFAULT_LOAD_FACTOR; // all other fields defaulted
  3. }
  4. public HashMap(int initialCapacity) {
  5. this(initialCapacity, DEFAULT_LOAD_FACTOR);
  6. }
  7. public HashMap(int initialCapacity, float loadFactor) {
  8. if (initialCapacity < 0)
  9. throw new IllegalArgumentException("Illegal initial capacity: " +
  10. initialCapacity);
  11. if (initialCapacity > MAXIMUM_CAPACITY)
  12. initialCapacity = MAXIMUM_CAPACITY;
  13. if (loadFactor <= 0 || Float.isNaN(loadFactor))
  14. throw new IllegalArgumentException("Illegal load factor: " +
  15. loadFactor);
  16. this.loadFactor = loadFactor;
  17. this.threshold = tableSizeFor(initialCapacity);
  18. }
  19. public HashMap(Map<? extends K, ? extends V> m) {
  20. this.loadFactor = DEFAULT_LOAD_FACTOR;
  21. putMapEntries(m, false);
  22. }

    前面三个构造器的区别都是在于指定初始容量以及负载因子,如果你选择默认的构造器那么在创建的时候不会指定threshold的值,而第二个以及第三个构造器在一开始的时候就会根据下面的这个方法来确认threshold值,可以看到下面用到了移位算法(有关内容可以查看博文:Java移位操作符以及按位操作符),最后一个构造器很显然就是把另一个Map的值映射到当前新的Map中这边不再赘述。

 

  1. /**
  2. * Returns a power of two size for the given target capacity.
  3. * 返回距离指定参数最近的2的整数次幂,例如7->8, 8->8, 9->16, 17->32
  4. * 保证为2的幂次方
  5. */
  6. static final int tableSizeFor(int cap) {
  7. int n = cap - 1;
  8. n |= n >>> 1;
  9. n |= n >>> 2;
  10. n |= n >>> 4;
  11. n |= n >>> 8;
  12. n |= n >>> 16;
  13. return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
  14. }

 

    这边先提下负载因子(loadFactor),源码中有个公式为threshold = loadFactor * 容量。HashMap和HashSet都允许你指定负载因子的构造器,表示当负载情况达到负载因子水平的时候,容器会自动扩容,HashMap默认使用的负载因子值为0.75f(当容量达到四分之三进行再散列(扩容))。当负载因子越大的时候能够容纳的键值对就越多但是查找的代价也会越高。所以如果你知道将要在HashMap中存储多少数据,那么你可以创建一个具有恰当大小的初始容量这可以减少扩容时候的开销。但是大多数情况下0.75在时间跟空间代价上达到了平衡所以不建议修改。

下面将根据默认的构造为出发点,从初始化一个HashMap到使用Get,Put方法进行一些源码解析。

 

put(K key, V value)

    在使用默认构造器初始化一个HashMap对象的时候,首次Put键值对的时候会先计算对应Key的hash值通过hash值来确定存放的地址。

    紧接着调用了putVal方法,在刚刚初始化之后的table值为null因此程序会进入到resize()方法中。而resize方法就是用来进行扩容的(稍后提到)。扩容后得到了一个table的节点(Node)数组,接着根据传入的hash值去获得一个对应节点p并去判断是否为空,是的话就存入一个新的节点(Node)。反之如果当前存放的位置已经有值了就会进入到else中去。接着根据前面得到的节点p的hash值以及key跟传入的hash值以及参数进行比较,如果一样则替覆盖。如果存在Hash碰撞就会以链表的形式保存,把当前传进来的参数生成一个新的节点保存在链表的尾部(JDK1.7保存在首部)。而如果链表的长度大于8那么就会以红黑树的形式进行保存。

  1. final V putVal(int hash, K key, V value, boolean onlyIfAbsent,
  2. boolean evict) {
  3. Node<K,V>[] tab; Node<K,V> p; int n, i;
  4. if ((tab = table) == null || (n = tab.length) == 0) //首次初始化的时候table为null
  5. n = (tab = resize()).length; //对HashMap进行扩容
  6. if ((p = tab[i = (n - 1) & hash]) == null) //根据hash值来确认存放的位置。如果当前位置是空直接添加到table中
  7. tab[i] = newNode(hash, key, value, null);
  8. else {
  9. //如果存放的位置已经有值
  10.  Node<K,V> e; K k;
  11. if (p.hash == hash &&
  12. ((k = p.key) == key || (key != null && key.equals(k))))
  13. e = p; //确认当前table中存放键值对的Key是否跟要传入的键值对key一致
  14. else if (p instanceof TreeNode) //确认是否为红黑树
  15. e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
  16. else {//如果hashCode一样的两个不同Key就会以链表的形式保存
  17. for (int binCount = 0; ; ++binCount) {
  18. if ((e = p.next) == null) {
  19. p.next = newNode(hash, key, value, null);
  20. if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st 判断链表长度是否大于8
  21. treeifyBin(tab, hash);
  22. break;
  23. }
  24. if (e.hash == hash &&
  25. ((k = e.key) == key || (key != null && key.equals(k))))
  26. break;
  27. p = e;
  28. }
  29. }
  30.  if (e != null) { // existing mapping for key
  31.  V oldValue = e.value;
  32. if (!onlyIfAbsent || oldValue == null)
  33. e.value = value; //替换新的value并返回旧的value
  34. afterNodeAccess(e);
  35. return oldValue;
  36. }
  37. }
  38. ++modCount;
  39. if (++size > threshold)
  40. resize();//如果当前HashMap的容量超过threshold则进行扩容
  41. afterNodeInsertion(evict);
  42. return null;
  43. }

 

扩容机制核心方法Node<K,V>[] resize()

    HashMap扩容可以分为三种情况:

第一种:使用默认构造方法初始化HashMap。从前文可以知道HashMap在一开始初始化的时候会返回一个空的table,并且thershold为0。因此第一次扩容的容量为默认值DEFAULT_INITIAL_CAPACITY也就是16。同时threshold = DEFAULT_INITIAL_CAPACITY * DEFAULT_LOAD_FACTOR = 12。

第二种:指定初始容量的构造方法初始化HashMap。那么从下面源码可以看到初始容量会等于threshold,接着threshold = 当前的容量(threshold) * DEFAULT_LOAD_FACTOR。

第三种:HashMap不是第一次扩容。如果HashMap已经扩容过的话,那么每次table的容量以及threshold量为原有的两倍。

    这边也可以引申到一个问题HashMap是先插入还是先扩容:HashMap初始化后首次插入数据时,先发生resize扩容再插入数据,之后每当插入的数据个数达到threshold时就会发生resize,此时是先插入数据再resize。

  1. final Node<K,V>[] resize() {
  2. Node<K,V>[] oldTab = table;//首次初始化后table为Null
  3. int oldCap = (oldTab == null) ? 0 : oldTab.length;
  4. int oldThr = threshold;//默认构造器的情况下为0
  5. int newCap, newThr = 0;
  6. if (oldCap > 0) {//table扩容过
  7. //当前table容量大于最大值得时候返回当前table
  8.  if (oldCap >= MAXIMUM_CAPACITY) {
  9. threshold = Integer.MAX_VALUE;
  10. return oldTab;
  11. }
  12. else if ((newCap = oldCap << 1) < MAXIMUM_CAPACITY &&
  13. oldCap >= DEFAULT_INITIAL_CAPACITY)
  14. //table的容量乘以2,threshold的值也乘以2  
  15. newThr = oldThr << 1; // double threshold
  16. }
  17. else if (oldThr > 0) // initial capacity was placed in threshold
  18. //使用带有初始容量的构造器时,table容量为初始化得到的threshold
  19.  newCap = oldThr;
  20. else { //默认构造器下进行扩容
  21. // zero initial threshold signifies using defaults
  22. newCap = DEFAULT_INITIAL_CAPACITY;
  23. newThr = (int)(DEFAULT_LOAD_FACTOR * DEFAULT_INITIAL_CAPACITY);
  24. }
  25. if (newThr == 0) {
  26. //使用带有初始容量的构造器在此处进行扩容
  27.  float ft = (float)newCap * loadFactor;
  28. newThr = (newCap < MAXIMUM_CAPACITY && ft < (float)MAXIMUM_CAPACITY ?
  29. (int)ft : Integer.MAX_VALUE);
  30. }
  31. threshold = newThr;
  32. @SuppressWarnings({"rawtypes","unchecked"})
  33. Node<K,V>[] newTab = (Node<K,V>[])new Node[newCap];
  34. table = newTab;
  35. if (oldTab != null) {
  36. for (int j = 0; j < oldCap; ++j) {
  37. HashMap.Node<K,V> e;
  38. if ((e = oldTab[j]) != null) {
  39. // help gc
  40. oldTab[j] = null;
  41. if (e.next == null)
  42. // 当前index没有发生hash冲突,直接对2取模,即移位运算hash &(2^n -1)
  43. // 扩容都是按照2的幂次方扩容,因此newCap = 2^n
  44. newTab[e.hash & (newCap - 1)] = e;
  45. else if (e instanceof HashMap.TreeNode)
  46. // 当前index对应的节点为红黑树,这里篇幅比较长且需要了解其数据结构跟算法,因此不进行详解,当树的个数小于等于UNTREEIFY_THRESHOLD则转成链表
  47. ((HashMap.TreeNode<K,V>)e).split(this, newTab, j, oldCap);
  48. else { // preserve order
  49. // 把当前index对应的链表分成两个链表,减少扩容的迁移量
  50. HashMap.Node<K,V> loHead = null, loTail = null;
  51. HashMap.Node<K,V> hiHead = null, hiTail = null;
  52. HashMap.Node<K,V> next;
  53. do {
  54. next = e.next;
  55. if ((e.hash & oldCap) == 0) {
  56. // 扩容后不需要移动的链表
  57. if (loTail == null)
  58. loHead = e;
  59. else
  60. loTail.next = e;
  61. loTail = e;
  62. }
  63. else {
  64. // 扩容后需要移动的链表
  65. if (hiTail == null)
  66. hiHead = e;
  67. else
  68. hiTail.next = e;
  69. hiTail = e;
  70. }
  71. } while ((e = next) != null);
  72. if (loTail != null) {
  73. // help gc
  74. loTail.next = null;
  75. newTab[j] = loHead;
  76. }
  77. if (hiTail != null) {
  78. // help gc
  79. hiTail.next = null;
  80. // 扩容长度为当前index位置+旧的容量
  81. newTab[j + oldCap] = hiHead;
  82. }
  83. }
  84. }
  85. }
  86. }
  87. return newTab;
  88. }
  1. /**
  2. * 测试目的:理解HashMap发生resize扩容的时候对于链表的优化处理:
  3. * 初始化一个长度为8的HashMap,因此threshold为6,所以当添加第7个数据的时候会发生扩容;
  4. * Map的Key为Integer,因为整数型的hash等于自身;
  5. * 由于hashMap是根据hash &(n - 1)来确定key所在的数组下标位置的,因此根据公式 m(m >= 1)* capacity + hash碰撞的数组索引下标index,可以拿到一组发生hash碰撞的数据;
  6. * 例如本例子capacity = 8, index = 7,数据为:15,23,31,39,47,55,63;
  7. * 有兴趣的读者,可以自己动手过后选择一组不同的数据样本进行测试。
  8. * 根据hash &(n - 1), n = 8 二进制1000 扩容后 n = 16 二进制10000, 当8的时候由后3位决定位置,16由后4位。
  9. *
  10. * n - 1 : 0111 & index resize--> 1111 & index
  11. * 15 : 1111 = 0111 resize--> 1111 = 1111
  12. * 23 : 10111 = 0111 resize--> 10111 = 0111
  13. * 31 : 11111 = 0111 resize--> 11111 = 1111
  14. * 39 : 100111 = 0111 resize--> 100111 = 0111
  15. * 47 : 101111 = 0111 resize--> 101111 = 1111
  16. * 55 : 110111 = 0111 resize--> 110111 = 0111
  17. * 63 : 111111 = 0111 resize--> 111111 = 1111
  18. *
  19. * 按照传统的方式扩容的话那么需要去遍历链表,然后跟put的时候一样对比key,==,equals,最后再放入新的索引位置;
  20. * 但是从上面数据可以发现原先所有的数据都落在了7的位置上,当发生扩容时候只有15,31,47,63需要移动(index发生了变化),其他的不需要移动;
  21. * 那么如何区分哪些需要移动,哪些不需要移动呢?
  22. * 通过key的hash值直接对old capacity进行按位与&操作如果结果等于0,那么不需要移动反之需要进行移动并且移动的位置等于old capacity + 当前index。
  23. *
  24. * hash & old capacity(8)
  25. * n : 1000 & index
  26. * 15 : 1111 = 1000
  27. * 23 : 10111 = 0000
  28. * 31 : 11111 = 1000
  29. * 39 : 100111 = 0000
  30. * 47 : 101111 = 1000
  31. * 55 : 110111 = 0000
  32. * 63 : 111111 = 1000
  33. *
  34. * 从下面截图可以看到通过源码中的处理方式可以拿到两个链表,需要移动的链表15->31->47->63,不需要移动的链表23->39->55;
  35. * 因此扩容的时候只需要把loHead放到原来的下标索引j(本例j=7),hiHead放到oldCap + j(本例为8 + 7 = 15)
  36. *
  37. * @param args
  38. */
  39. public static void main(String[] args) {
  40. HashMap<Integer, Integer> map = new HashMap<>(8);
  41. for (int i = 1; i <= 7; i++) {
  42. int sevenSlot = i * 8 + 7;
  43. map.put(sevenSlot, sevenSlot);
  44. }
  45. }

 

负载因子loadFactor测试    

    前文提到负载因子loadFactor保持在0.75f是在时间跟空间上达到一个平衡,实际上也就是说0.75f是效率相对比较高的,下面将贴出测试案例。可以看到同样的初始容量但是负载因子不同的map,map2,map4中map4是最快的,而相同的负载因子初始容量map3,map4中map3的速度更快。为此在使用HashMap的时候如果可以预知数据量大小的话最好指定初始容量,可以减少运行过程中扩容的次数,以达到一定的性能提升。

  1. public static void main(String[] args) {
  2. HashMap<Integer, Integer> map = new HashMap<>(16, 100);
  3. HashMap<Integer, Integer> map2 = new HashMap<>(16, 0.5f);
  4. HashMap<Integer, Integer> map3 = new HashMap<>(100);
  5. HashMap<Integer, Integer> map4 = new HashMap<>();
  6. DateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss:SS");
  7. System.out.println(sdf.format(new Date()));
  8. for (int i = 0; i < 5000000; i++) {
  9. map.put(i, i);
  10. }
  11. System.out.println(sdf.format(new Date()));
  12. System.out.println(sdf.format(new Date()));
  13. for (int i = 0; i < 5000000; i++) {
  14. map2.put(i, i);
  15. }
  16. System.out.println(sdf.format(new Date()));
  17. System.out.println(sdf.format(new Date()));
  18. for (int i = 0; i < 5000000; i++) {
  19. map3.put(i, i);
  20. }
  21. System.out.println(sdf.format(new Date()));
  22. System.out.println(sdf.format(new Date()));
  23. for (int i = 0; i < 5000000; i++) {
  24. map4.put(i, i);
  25. }
  26. System.out.println(sdf.format(new Date()));
  27. }
  1. 20180705152534:83
  2. 20180705152546:87
  3. 20180705152546:87
  4. 20180705152550:643
  5. 20180705152550:643
  6. 20180705152552:980
  7. 20180705152552:980
  8. 20180705152556:132

 

get(Object key)

    先前HashMap通过hash code来存放数据,那么get方法一样要通过hash code来获取数据。可以看到如果当前table没有数据的话直接返回null反之通过传进来的hash值找到对应节点(Node)first,如果first的hash值以及Key跟传入的参数匹配就返回对应的value反之判断是否是红黑树,如果是红黑树则从根节点开始进行匹配如果有对应的数据则结果否则返回Null,如果是链表的话就会循环查询链表,如果当前的节点不匹配的话就会从当前节点获取下一个节点来进行循环匹配,如果有对应的数据则返回结果否则返回Null。

  1. final Node<K,V> getNode(int hash, Object key) {
  2. Node<K,V>[] tab; Node<K,V> first, e; int n; K k;
  3. //如果当前table没有数据的话返回Null
  4.  if ((tab = table) != null && (n = tab.length) > 0 &&
  5. (first = tab[(n - 1) & hash]) != null) {
  6. //根据当前传入的hash值以及参数key获取一个节点即为first,如果匹配的话返回对应的value值
  7.  if (first.hash == hash && // always check first node
  8. ((k = first.key) == key || (key != null && key.equals(k))))
  9.  return first;
  10. //如果参数与first的值不匹配的话
  11.  if ((e = first.next) != null) {
  12. //判断是否是红黑树,如果是红黑树的话先判断first是否还有父节点,然后从根节点循环查询是否有对应的值
  13.  if (first instanceof TreeNode)
  14. return ((TreeNode<K,V>)first).getTreeNode(hash, key);
  15. do {
  16. //如果是链表的话循环拿出数据
  17.  if (e.hash == hash &&
  18. ((k = e.key) == key || (key != null && key.equals(k))))
  19. return e;
  20. } while ((e = e.next) != null);
  21. }
  22. }
  23. return null;
  24. }

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/835505
推荐阅读
相关标签
  

闽ICP备14008679号