源码看JAVA【二十四】LinkedHashSet

本文深入解析LinkedHashSet的四种构造方法,包括空集合的初始化、指定初始容量和负载因子的构造方式,以及从已有集合创建LinkedHashSet的过程。文章详细介绍了每种构造方法的参数设置和异常处理,帮助读者理解LinkedHashSet的内部机制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

LinkedHashSet具体来说是构造重载了HashSet。使用HashSet在构造方法中添加dummy参数也能实现LinkedHashSet的功能。

使用上LinkedHashSet方便了HashSet的构造,并且使得语义更容易理解。

    /**
     * Constructs a new, empty linked hash set with the specified initial
     * capacity and load factor.
     *
     * @param      initialCapacity the initial capacity of the linked hash set
     * @param      loadFactor      the load factor of the linked hash set
     * @throws     IllegalArgumentException  if the initial capacity is less
     *               than zero, or if the load factor is nonpositive
     */
    public LinkedHashSet(int initialCapacity, float loadFactor) {
        super(initialCapacity, loadFactor, true);
    }

    /**
     * Constructs a new, empty linked hash set with the specified initial
     * capacity and the default load factor (0.75).
     *
     * @param   initialCapacity   the initial capacity of the LinkedHashSet
     * @throws  IllegalArgumentException if the initial capacity is less
     *              than zero
     */
    public LinkedHashSet(int initialCapacity) {
        super(initialCapacity, .75f, true);
    }

    /**
     * Constructs a new, empty linked hash set with the default initial
     * capacity (16) and load factor (0.75).
     */
    public LinkedHashSet() {
        super(16, .75f, true);
    }

    /**
     * Constructs a new linked hash set with the same elements as the
     * specified collection.  The linked hash set is created with an initial
     * capacity sufficient to hold the elements in the specified collection
     * and the default load factor (0.75).
     *
     * @param c  the collection whose elements are to be placed into
     *           this set
     * @throws NullPointerException if the specified collection is null
     */
    public LinkedHashSet(Collection<? extends E> c) {
        super(Math.max(2*c.size(), 11), .75f, true);
        addAll(c);
    }

 

`LinkedHashSet` 是 Java 集合框架中 `Set` 接口的一个实现,它维护了一个双向链表来保证元素的插入顺序。它是 `HashSet` 的一个变种,后者不会记录插入顺序,因此 `LinkedHashSet` 在需要维护插入顺序的情况下非常有用。 `LinkedHashSet` 是基于 `LinkedHashMap` 来实现的。`LinkedHashMap` 通过在 `HashMap` 的基础上添加了一对儿前后指针,形成了双向链表。这样一来,它就可以记录插入顺序,也可以实现快速的访问。 下面是一个简化版的 `LinkedHashSet` 的源码结构,用于展示其基本的实现方式: ```java public class LinkedHashSet<E> extends HashSet<E> implements Set<E>, Cloneable, java.io.Serializable { private static final long serialVersionUID = -2851667679971038690L; public LinkedHashSet(int initialCapacity, float loadFactor) { super(initialCapacity, loadFactor, true); } public LinkedHashSet(int initialCapacity) { super(initialCapacity, .75f, true); } public LinkedHashSet() { super(16, .75f, true); } public LinkedHashSet(Collection<? extends E> c) { super(Math.max(2*c.size(), 11), .75f, true); addAll(c); } @Override public Spliterator<E> spliterator() { return Spliterators.spliterator(this, Spliterator.DISTINCT | Spliterator.ORDERED); } // 由于 LinkedHashSet 是基于 LinkedHashMap 实现的,所以这里返回 LinkedHashMap 实例 @Override public Iterator<E> iterator() { return backingMap().keySet().iterator(); } // 以下是不重要的方法实现,省略... // 由于 LinkedHashSet 是基于 LinkedHashMap 实现的,这里可以访问 LinkedHashMap 的实例 private LinkedHashMap<E, ?> backingMap() { return (LinkedHashMap<E, ?>) backingMap; } } ``` 可以看到,`LinkedHashSet` 的大部分方法都是委托给 `HashSet` 的,而 `HashSet` 又是委托给其背后的一个 `HashMap`(实际上是 `LinkedHashMap`)来完成实际操作的。`LinkedHashSet` 只是添加了一些必要的构造函数,并且对外提供了一个迭代器来按照插入顺序访问元素。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值