Java源码系列(15) -- CopyOnWriteArraySet

August 21, 2018

一、类签名

CopyOnWriteArraySet基于CopyOnWriteArrayList实现写时复制功能,并获得其线程安全的能力。插入前先检查元素是否包含在列表中,以保证集合元素去重。源码来自JDK10。

1
2
public class CopyOnWriteArraySet<E> extends AbstractSet<E>
        implements java.io.Serializable

二、数据成员

数据成员中包含了一个CopyOnWriteArrayList实例。

1
private final CopyOnWriteArrayList<E> al;

三、构造方法

初始化空列表。

1
2
3
public CopyOnWriteArraySet() {
    al = new CopyOnWriteArrayList<E>();
}

通过指定集合初始化,集合c为空则抛出NullPointerException

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public CopyOnWriteArraySet(Collection<? extends E> c) {
    if (c.getClass() == CopyOnWriteArraySet.class) {
        // 集合c是CopyOnWriteArraySet,里面所有元素都是唯一的
        @SuppressWarnings("unchecked") CopyOnWriteArraySet<E> cc =
            (CopyOnWriteArraySet<E>)c;
        // 用集合c构造实例
        al = new CopyOnWriteArrayList<E>(cc.al);
    }
    else {
        // 集合c类型不是CopyOnWriteArraySet,不能保证集合c的元素是唯一的
        al = new CopyOnWriteArrayList<E>();
        // 需通过addAllAbsent()逐个添加元素去重
        al.addAllAbsent(c);
    }
}

四、成员方法

4.1 增加

添加指定元素,如果元素已存在,则该元素不会添加。

1
2
3
public boolean add(E e) {
    return al.addIfAbsent(e); // 此元素成功添加返回true,否则返回false
}

把集合c中所有元素添加到CopyOnWriteArraySet实例中。

1
2
3
public boolean addAll(Collection<? extends E> c) {
    return al.addAllAbsent(c) > 0; // 有任何元素添加则返回true,否则返回false
}

4.2 删除

清空CopyOnWriteArraySet中所有元素,其实就是清空成员变量CopyOnWriteArrayList

1
2
3
public void clear() {
    al.clear();
}

移除指定元素。

1
2
3
public boolean remove(Object o) {
    return al.remove(o);
}

移除Set与集合c共有的元素。

1
2
3
public boolean removeAll(Collection<?> c) {
    return al.removeAll(c);
}

4.3 查询

检查是否包含指定对象。

1
2
3
public boolean contains(Object o) {
    return al.contains(o);
}

检查Set是否全包含集合c的全部元素。

1
2
3
4
5
public boolean containsAll(Collection<?> c) {
    return (c instanceof Set)
        ? compareSets(al.getArray(), (Set<?>) c) >= 0
        : al.containsAll(c);
}

检查集合是否为空。

1
2
3
public boolean isEmpty() {
    return al.isEmpty();
}

4.4 修改

仅保留Set与集合c共有的元素。

1
2
3
public boolean retainAll(Collection<?> c) {
    return al.retainAll(c);
}

4.5 其他

返回集合已保存元素的数量。

1
2
3
public int size() {
    return al.size();
}

返回一个数组作为结果,修改数组没有副作用。

1
2
3
4
5
6
7
public Object[] toArray() {
    return al.toArray();
}

public <T> T[] toArray(T[] a) {
    return al.toArray(a);
}

检查snapshot是否为set的超集:

  • -1: snapshot不是set的超集;
  • +0: snapshot和set包含的元素完全相同;
  • +1: snapshot是set的超集,即所有set的元素snapshot都包含;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
private static int compareSets(Object[] snapshot, Set<?> set) {
    // Uses O(n^2) algorithm, that is only appropriate for small
    // sets, which CopyOnWriteArraySets should be.
    //
    // Optimize up to O(n) if the two sets share a long common prefix,
    // as might happen if one set was created as a copy of the other set.

    final int len = snapshot.length;
    // Mark matched elements to avoid re-checking
    final boolean[] matched = new boolean[len];

    // j is the largest int with matched[i] true for { i | 0 <= i < j }
    int j = 0;
    outer: for (Object x : set) {
        for (int i = j; i < len; i++) {
            if (!matched[i] && Objects.equals(x, snapshot[i])) {
                matched[i] = true;
                if (i == j)
                    do { j++; } while (j < len && matched[j]);
                continue outer;
            }
        }
        return -1;
    }
    return (j == len) ? 0 : 1;
}

返回迭代器,遍历的集合是一份快照,且不支持remove()操作。

1
2
3
public Iterator<E> iterator() {
    return al.iterator();
}

检查对象o和指定实例是否为同一个对象,或其中包含的元素是否完全相同。

1
2
3
4
5
public boolean equals(Object o) {
    return (o == this)
        || ((o instanceof Set)
            && compareSets(al.getArray(), (Set<?>) o) == 0);
}

五、Spliterator

1
2
3
4
public Spliterator<E> spliterator() {
    return Spliterators.spliterator
        (al.getArray(), Spliterator.IMMUTABLE | Spliterator.DISTINCT);
}