Java 8 HashMap

2019-10-08 09:02:28来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

Java 8 HashMap

HashMap 使用数组、链表和红黑树存储键值对,当链表足够长时,会转换为红黑树。HashMap 是非线程安全的。

HashMap 中的常量

static final int DEFAULT_INITIAL_CAPACITY = 1 << 4;
static final int MAXIMUM_CAPACITY = 1 << 30;
static final float DEFAULT_LOAD_FACTOR = 0.75f;
static final int TREEIFY_THRESHOLD = 8;
static final int UNTREEIFY_THRESHOLD = 6;
static final int MIN_TREEIFY_CAPACITY = 64;
  • DEFAULT_INITIAL_CAPACITY 初始容量为 16。
  • MAXIMUM_CAPACITY 最大容量为 230
  • DEFAULT_LOAD_FACTOR 默认装填因子。初始情况下,当键值对数量大于 16 * 装填因子时,就会扩容为原来的 2 倍。
  • TREEIFY_THRESHOLD 当链表的长度达到该值时,有可能会转化为树。
  • UNTREEIFY_THRESHOLD 当链表长度小于该值时,会从树退化为链表。
  • MIN_TREEIFY_CAPACITY 在转变为树前,会做一次判断,只有键值对的数量大于该值时,才会转化为红黑树,若小于该值,只触发扩容。

HashMap 中的容量用到了移位操作,将一个数 a 左移 n 位相当于:a = a * 2n ,所以 1 << 4 => 1 * 24 = 16 。因此,HashMap 的容量总是 2 的 n 次幂。

使用有参构造方法可以指定初始容量和装填因子,指定的容量会被向上调整为 2 的 n 次幂(比如给定容量为13,则会调整为 16)。

HashMap 中键值对的值可以为 null,可以存在一个 key 为 null 的键值对。

HashMap 的部分方法

treeifyBin 方法

/**
 * Replaces all linked nodes in bin at index for given hash unless
 * table is too small, in which case resizes instead.
 */
final void treeifyBin(Node<K,V>[] tab, int hash) {
    int n, index; Node<K,V> e;
    // 判断是否达到转化为树的阈值
    if (tab == null || (n = tab.length) < MIN_TREEIFY_CAPACITY)
        resize();   // 没有达到只做扩容操作
    else if ((e = tab[index = (n - 1) & hash]) != null) {
        TreeNode<K,V> hd = null, tl = null;
        do {
            TreeNode<K,V> p = replacementTreeNode(e, null);
            if (tl == null)
                hd = p;
            else {
                p.prev = tl;
                tl.next = p;
            }
            tl = p;
        } while ((e = e.next) != null);
        if ((tab[index] = hd) != null)
            hd.treeify(tab);
    }
}

在调用 put 方法添加键值对时,如果数量达到了 TREEIFY_THRESHOLD ,就会调用 treeifyBin 方法,该方法会再判断一次表长度是否达到 MIN_TREEIFY_CAPACITY,如果没有达到,就只做扩容操作,否则将表转化为树。

这里的 (n - 1) & hash 就是求余操作,相当于 hash % n,因为 HashMap 的长度总是 2 的 n 次幂。

replaceAll 方法

@Override
public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
    Node<K,V>[] tab;
    if (function == null)
        throw new NullPointerException();
    if (size > 0 && (tab = table) != null) {
        int mc = modCount;
        for (int i = 0; i < tab.length; ++i) {
            for (Node<K,V> e = tab[i]; e != null; e = e.next) {
                e.value = function.apply(e.key, e.value);
            }
        }
        if (modCount != mc)
            throw new ConcurrentModificationException();
    }
}

该方法接受一个 lambda 表达式,将满足给定条件的值替换掉,比如:

HashMap<Integer, String> map = ...;
// 将 key 为偶数的所有键值对的值替换为 "foo"
map.replaceAll((k, v) -> k % 2 == 0 ? "foo" : v);

forEach 方法

@Override
public void forEach(BiConsumer<? super K, ? super V> action) {
    Node<K,V>[] tab;
    if (action == null)
        throw new NullPointerException();
    if (size > 0 && (tab = table) != null) {
        int mc = modCount;
        for (int i = 0; i < tab.length; ++i) {
            for (Node<K,V> e = tab[i]; e != null; e = e.next)
                action.accept(e.key, e.value);
        }
        if (modCount != mc)
            throw new ConcurrentModificationException();
    }
}

该方法也接受一个 lambda 表达式,用于消费键值对:

// 打印所有键值对
map.forEach(
    (k, v) -> System.out.println(k + ": " + v)
);

// 打印所有 key 为偶数的键值对
map.forEach(
    (k, v) -> {
        if (k % 2 == 0)
            System.out.println(k + ": " + v)
    }
);

原文链接:https://www.cnblogs.com/cloudfloating/p/11612899.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:用java实现“钉钉微应用,免登进入某H5系统首页“功能”

下一篇:Spring MVC的常用注解