linkedhashset java8_Java8集合框架——LinkedHashSet源码分析

本文的目录结构如下:

一、LinkedHashSet 的 Javadoc 文档注释和简要说明

还是以官方 javadoc 作为参考进行说明:

LinkedHashSet 是 Set 接口的 hash table 和 linked list 实现,而且迭代顺序可预测(按照元素的插入顺序),实际上 LinkedHashSet 继承了 HashSet,内部使用了 LinkedHashMap 实例,共用一个 value;和 HashSet 的不同之处在于维护了双链表;对于需要保持有序的 Set 参数的场景很实用。

允许存储 null;迭代/遍历的效率也只是和实际元素的个数有关。

LinkedHashSet 也是非线程安全的,需要其他的工具类来保证线程安全。

LinkedHashSet 也是 fail-fast;同样也并不保证出现有并发修改就百分百抛出 ConcurrentModificationException。

f3a453e1156bd1d3097cabbd22953a1c.png

二、LinkedHashSet 的内部实现:构造函数

LinkedHashSet 没有扩展的属性,直接继承了 HashSet。构造函数都是通过 HashSet 的包级私有构造函数来返回 LinkedHashMap 实例。

/**

* 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 的 add 操作和 remove 操作

和 HashSet 一致,只是内部是 LinkedHashMap 实例在操作,保证有序。不再赘述。

标签:set,capacity,initial,linked,源码,LinkedHashSet,Java8,hash

来源: https://www.cnblogs.com/wpbxin/p/12209536.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值