本篇总结一下两个常用的集合类HashSet和LinkedHashSet。
它们都实现了相同接口java.util.Set。Set表示一种元素无序且不可重复的集合;之前总结过的java.util.List表示一种元素可重复且有序的集合。它们都扩展自java.util.Collection。
public interface Set<E> extends Collection<E> {
int size();
boolean isEmpty();
boolean contains(Object o);
Iterator<E> iterator();
Object[] toArray();
<T> T[] toArray(T[] a);
boolean add(E e);
boolean remove(Object o);
boolean containsAll(Collection<?> c);
boolean addAll(Collection<? extends E> c);
boolean retainAll(Collection<?> c);
boolean removeAll(Collection<?> c);
void clear();
boolean equals(Object o);
int hashCode();
可以看到Set的接口描述,和List比,只少了一些与下标有关的特性。
先来看一下HashSet的实现方式。
public class HashSet<E>
extends AbstractSet<E>
implements Set<E>, Cloneable, java.io.Serializable
{
HashSet是
可克隆、可序列化的;实现了java.util.Set;继承了java.util.AbstractSet,AbstractSet包含一些骨架方法,很容易看懂。继续往下看。
private transient HashMap<E,Object> map;
// Dummy value to associate with an Object in the backing Map
private static final Object PRESENT = new Object();
看到这里就基本上明白是怎么实现的了吧!原来HashSet内部是一个HashMap,难怪HashSet用起来很像一个HashMap,只是没有value。所以PRESENT这个对象就用来填充value值了。有了前面
HashMap的分析,后面的基本上不用看了。
不过有一个小地方要注意一下。
/**
* Constructs a new, empty linked hash set. (This package private
* constructor is only used by LinkedHashSet.) The backing
* HashMap instance is a LinkedHashMap with the specified initial
* capacity and the specified load factor.
*
* @param initialCapacity the initial capacity of the hash map
* @param loadFactor the load factor of the hash map
* @param dummy ignored (distinguishes this
* constructor from other int, float constructor.)
* @throws IllegalArgumentException if the initial capacity is less
* than zero, or if the load factor is nonpositive
*/
HashSet(int initialCapacity, float loadFactor, boolean dummy) {
map = new LinkedHashMap<E,Object>(initialCapacity, loadFactor);
}
这个构造方法和其他的不一样。里面的Map实现是LinkedHashMap。从注释上可以看到,这个方法只是由LinkedHashSet使用,方法的第三个参数也只是用来与其他构造方法进行区分,代码中并没有实际用到。
接下来看一下java.util.LinkedHashSet的实现吧。
public class LinkedHashSet<E>
extends HashSet<E>
implements Set<E>, Cloneable, java.io.Serializable {
private static final long serialVersionUID = -2851667679971038690L;
/**
* 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的全部代码了,基本上没什么可说的了,参考下
LinkedHashMap的总结吧。
分享到:
相关推荐
- **Set**: `HashSet`, `TreeSet`, `LinkedHashSet` 等。 - **List**: `ArrayList`, `LinkedList`, `Vector` 等。 - **Queue**: `LinkedList`(也可以作为队列使用),`PriorityQueue` 等。 **2. Map 接口的实现类*...
- **Set接口**:包括HashSet、LinkedHashSet、TreeSet等实现,提供无序、不重复元素的集合。 - **Map接口**:包括HashMap、LinkedHashMap、TreeMap等实现,存储键值对的数据结构。 3. **并发编程**: - **线程类...
Set接口主要有三种实现类:`HashSet`、`LinkedHashSet`以及`TreeSet`。 ##### 1.1 认识Set集合的特点 - **HashSet**:基于哈希表的实现,不保证元素的顺序,不允许重复元素。 - **LinkedHashSet**:基于哈希表和...
### Java集合面试题全集解析 #### 一、List、Set、Map的区别 - **List**:有序集合,允许重复元素。典型实现包括`ArrayList`(基于数组)、`LinkedList`(基于双向链表)。适用于频繁的插入和删除操作时选择`...
- **Set**: 不允许重复元素的集合,如HashSet、LinkedHashSet和TreeSet。 - **List**: 有序的集合,允许重复元素,如ArrayList、LinkedList和Vector。 - **Map**: 关联key到value的对象,如HashMap、TreeMap和...
说明:如无特别说明,所有代码都基于JDK8 JavaSE(Java基础) Java Core 关键字 synchronized关键字 Java String Java Arrays Java Collections Java 泛型 Java NIO Buffer Channel Selector Java 8 Features 源码解读...
- 4)LinkedHashSet:HashSet 的子类,底层采用了哈希表算法以及链表算法,既保证了元素的添加顺序,也保证了查询效率,但是整体性能要低于 HashSet - 5)treeSet 不保证元素的添加顺序,但是对集合中的元素进行排序...
根据给定的信息,本文将对Java基础核心进行深入解析,并为初级Java程序员提供一份全面的指导手册。本文将涵盖从Java环境配置到基本语法、面向对象编程基础、数据结构、异常处理、输入输出流等内容。 ### 一、Java...
AbstractSet 抽象类SortedSet 接口HashSet LinkedHashSet TreeSet List 接口 AbstractList 和 AbstractSequentialList Vector Stack ArrayList LinkedList Queue接口Deque 接口 AbstractQueue 抽象类LinkedList ...
- `Set`: 不允许重复元素的集合,如`HashSet`、`LinkedHashSet`。 - `Map`: 键值对集合,键不允许重复,如`HashMap`、`TreeMap`。 #### List、Set、Map的区别 - **List**: 有序且可重复,支持索引访问。 - **Set**:...
- `LinkedHashSet`:按插入顺序排列元素。 - `TreeSet`:按自然顺序排序。 ##### 9.4 Queue队列 - `Queue`:先进先出的数据结构。 - `PriorityQueue`:按照优先级顺序排列元素。 ##### 9.5 Map集合 - `HashMap`:...
- **Collections**:提供了许多静态方法来操作集合。 #### 五、输入/输出流 Java 提供了多种 I/O 操作的方式,包括文件读写、网络通信等。 - **File**:表示文件和目录的类。 - **InputStream/OutputStream**:...
- **Set**:无序且不允许重复元素的集合,如 HashSet、LinkedHashSet 和 TreeSet。 - **Queue**:先进先出(FIFO)的数据结构,如 LinkedList(作为 Queue 使用)、ArrayDeque 和 PriorityQueue。 2. **...
- 高级集合:包括TreeSet、TreeMap、LinkedHashSet等,以及Collections工具类的使用。 5. **多线程** - 线程基础:线程的创建方式,线程状态及其转换,以及线程同步和通信方法。 - 并发工具:Semaphore、...
7. **可移植性:** Java代码在不同平台上无需修改即可运行。 8. **高性能:** JIT(Just-In-Time)编译器显著提高了执行效率。 #### 二、Java实现跨平台机制 **Java实现跨平台的关键在于Java虚拟机(JVM)。** - **...
- 2006年:发布了Java 6(即JDK 1.6),进一步优化了性能,并添加了一些新的API。 - **Java体系** - **Java SE (Standard Edition)**:标准版,用于开发桌面应用程序。 - **Java EE (Enterprise Edition)**:...