Java编程中的CopyOnWriteArrayList类
类声明
public class CopyOnWriteArrayList<E> extends Object implements List<E>, RandomAccess, Cloneable, Serializable
CopyOnWriteArrayList是ArrayList的线程安全变体,其中可以更改ArrayList的操作(add、update、set方法)会创建底层数组的克隆。
CopyOnWriteArrayList应该用于基于线程的环境中,在该环境中读取操作非常频繁,而更新操作很少见。
CopyOnWriteArrayList的迭代器永远不会抛出ConcurrentModificationException异常。
对CopyOnWriteArrayList的任何类型的修改都不会在迭代器创建后反映在迭代过程中。
在迭代期间不支持List修改方法,例如remove、set和add。这些方法将抛出UnsupportedOperationException异常。
可以向列表中添加null值。
CopyOnWriteArrayList方法
以下是CopyOnWriteArrayList类中可用的一些重要方法。
序号 | 方法及描述 |
---|---|
1 | void add(int index, Object element) 在此列表的指定位置index插入指定的元素。如果指定的索引超出范围(index < 0 || index > size()),则抛出IndexOutOfBoundsException异常。 |
2 | boolean add(Object o) 将指定的元素附加到此列表的末尾。 |
3 | boolean addAll(Collection c) 按指定集合的迭代器返回的顺序,将指定集合中的所有元素附加到此列表的末尾。如果指定的集合为null,则抛出NullPointerException异常。 |
4 | boolean addAll(int index, Collection c) 从指定位置开始,将指定集合中的所有元素插入到此列表中。如果指定的集合为null,则抛出NullPointerException异常。 |
5 | void clear() 从此列表中删除所有元素。 |
6 | Object clone() 返回此ArrayList的浅拷贝。 |
7 | boolean contains(Object o) 如果此列表包含指定的元素,则返回true。更正式地说,当且仅当此列表包含至少一个元素**e**使得(o==null ? e==null : o.equals(e))时返回true。 |
8 | Object get(int index) 返回此列表中指定位置的元素。如果指定的索引超出范围(index < 0 || index >= size()),则抛出IndexOutOfBoundsException异常。 |
9 | int indexOf(Object o) 返回此列表中指定元素的第一次出现的索引,如果列表不包含此元素,则返回-1。 |
10 | int lastIndexOf(Object o) 返回此列表中指定元素的最后一次出现的索引,如果列表不包含此元素,则返回-1。 |
11 | Object remove(int index) 从此列表中删除指定位置的元素。如果索引超出范围(index < 0 || index >= size()),则抛出IndexOutOfBoundsException异常。 |
12 | Object set(int index, Object element) 用指定的元素替换此列表中指定位置的元素。如果指定的索引超出范围(index < 0 || index >= size()),则抛出IndexOutOfBoundsException异常。 |
13 | int size() 返回此列表中元素的数量。 |
14 | Object[] toArray() 返回一个包含此列表中所有元素的数组,顺序正确。如果指定的数组为null,则抛出NullPointerException异常。 |
示例
下面的程序演示了CopyOnWriteArrayList支持的几种方法。
import java.util.Iterator; import java.util.concurrent.CopyOnWriteArrayList; public class Tester { public static void main(String args[]) { // create an array list CopyOnWriteArrayList<String> al = new CopyOnWriteArrayList(); System.out.println("Initial size of al: " + al.size()); // add elements to the array list al.add("C"); al.add("A"); al.add("E"); al.add("B"); al.add("D"); al.add("F"); al.add(1, "A2"); System.out.println("Size of al after additions: " + al.size()); // display the array list System.out.println("Contents of al: " + al); // Remove elements from the array list al.remove("F"); al.remove(2); System.out.println("Size of al after deletions: " + al.size()); System.out.println("Contents of al: " + al); try { Iterator<String> iterator = al.iterator(); while(iterator.hasNext()) { iterator.remove(); } }catch(UnsupportedOperationException e) { System.out.println("Method not supported:"); } System.out.println("Size of al: " + al.size()); } }
输出
Initial size of al: 0 Size of al after additions: 7 Contents of al: [C, A2, A, E, B, D, F] Size of al after deletions: 5 Contents of al: [C, A2, E, B, D] Method not supported: Size of al: 5
广告