天天育儿网,内容丰富有趣,生活中的好帮手!
天天育儿网 > 小葵花妈妈课堂开课了:《ArrayList源码浅析》

小葵花妈妈课堂开课了:《ArrayList源码浅析》

时间:2020-08-27 21:50:18

相关推荐

小葵花妈妈课堂开课了:《ArrayList源码浅析》

官方文档源码介绍:

/*** Resizable-array implementation of the <tt>List</tt> interface. Implements* all optional list operations, and permits all elements, including* <tt>null</tt>. In addition to implementing the <tt>List</tt> interface,* this class provides methods to manipulate the size of the array that is* used internally to store the list. (This class is roughly equivalent to* <tt>Vector</tt>, except that it is unsynchronized.)** <p>The <tt>size</tt>, <tt>isEmpty</tt>, <tt>get</tt>, <tt>set</tt>,* <tt>iterator</tt>, and <tt>listIterator</tt> operations run in constant* time. The <tt>add</tt> operation runs in <i>amortized constant time</i>,* that is, adding n elements requires O(n) time. All of the other operations* run in linear time (roughly speaking). The constant factor is low compared* to that for the <tt>LinkedList</tt> implementation.** <p>Each <tt>ArrayList</tt> instance has a <i>capacity</i>. The capacity is* the size of the array used to store the elements in the list. It is always* at least as large as the list size. As elements are added to an ArrayList,* its capacity grows automatically. The details of the growth policy are not* specified beyond the fact that adding an element has constant amortized* time cost.** <p>An application can increase the capacity of an <tt>ArrayList</tt> instance* before adding a large number of elements using the <tt>ensureCapacity</tt>* operation. This may reduce the amount of incremental reallocation.** <p><strong>Note that this implementation is not synchronized.</strong>* If multiple threads access an <tt>ArrayList</tt> instance concurrently,* and at least one of the threads modifies the list structurally, it* <i>must</i> be synchronized externally. (A structural modification is* any operation that adds or deletes one or more elements, or explicitly* resizes the backing array; merely setting the value of an element is not* a structural modification.) This is typically accomplished by* synchronizing on some object that naturally encapsulates the list.** If no such object exists, the list should be "wrapped" using the* {@link Collections#synchronizedList Collections.synchronizedList}* method. This is best done at creation time, to prevent accidental* unsynchronized access to the list:<pre>* List list = Collections.synchronizedList(new ArrayList(...));</pre>** <p><a name="fail-fast">* The iterators returned by this class's {@link #iterator() iterator} and* {@link #listIterator(int) listIterator} methods are <em>fail-fast</em>:</a>* if the list is structurally modified at any time after the iterator is* created, in any way except through the iterator's own* {@link ListIterator#remove() remove} or* {@link ListIterator#add(Object) add} methods, the iterator will throw a* {@link ConcurrentModificationException}. Thus, in the face of* concurrent modification, the iterator fails quickly and cleanly, rather* than risking arbitrary, non-deterministic behavior at an undetermined* time in the future.** <p>Note that the fail-fast behavior of an iterator cannot be guaranteed* as it is, generally speaking, impossible to make any hard guarantees in the* presence of unsynchronized concurrent modification. Fail-fast iterators* throw {@code ConcurrentModificationException} on a best-effort basis.* Therefore, it would be wrong to write a program that depended on this* exception for its correctness: <i>the fail-fast behavior of iterators* should be used only to detect bugs.</i>** <p>This class is a member of the* <a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/collections/index.html">* Java Collections Framework</a>.** @author Josh Bloch* @author Neal Gafter* @seeCollection* @seeList* @seeLinkedList* @seeVector* @since 1.2*//*** Resizable-array实现了List的接口。实现所有列表操作, 并且允许所有元素为null.* 不仅实现了List接口,这个类也提供了操作数组的大小的方法,这些方法通常用来存储list.* 除了该类是不同步的,那么这个类就相当于Vector。** size,isEmpty,get,set,interator,listIterator都是已固定时间运行。add操作以分摊的固定时间* 运行,也就是添加n各元素,需要O(n)的时间。所有其他操作都已线性时间运行。* 与用于LinkedList实现的常数因子相比,此实现的常数因子较低。** 每一个ArrayList实例都有容量。容量是list中存储元素的数组的个数。它总是至少和list的大小一样大。* 作为一个元素添加到ArrayList中,容量自动增长。并未指定增长策略的细节,* 因为这不只是添加元素会带来分摊固定时间开销那么简单。** 在添加大容量元素之前,我们需要使用ensureCapacity操作,提升ArrayList实例的容量。* 这可以减少递增式再分配的容量。** 需要注意的是,这个实现并不是同步的。如果多线程同时访问同一个ArrayList实例,并且至少有一个* 线程修改了list的结构,他必须保持外部同步。结构上的修改包括add、delete一个或多个元素,或者调整* 数组的大小;只是设置一个元素的具体值并不是一种结构调整。通常需要一些object做同步,* 来完成自然分装列表。* 如果没有object去进行同步的话,那么list就需要使用* Collections.synchronizedList Collections.synchronizedList方法进行封装。* 这样可以防止意外的并且没有进行同步的情况下去获得list实例。* List list = Collections.synchronizedList(new ArrayList(...));* 可以通过类的iterator()方法获得迭代器,并且listIterator()方法是快速失效,如果list的结构在iterator* 创建之后的任意时间内被除了自身的 ListIterator#remove()、ListIterator#add(Object)* 方法外修改了,iterator都会抛出一个异常ConcurrentModificationException。* 因此面对并行修改,迭代器很快就会完全失败,而不是在未来某个不确定的时间发生任意不确定的行为的风险。* 注意,迭代器的fail-fast行为不能得到保证,因为,在没有同步并发修改的情况下不会获得任何的硬性保证。* fail-fast迭代器会抛出ConcurrentModificationException异常。因此写程序时依赖这个异常来保证* 正确性是错误的,迭代器的fail-fast行为应该只能用来检测缺陷。*/

public class ArrayList<E> extends AbstractList<E>implements List<E>, RandomAccess, Cloneable, java.io.Serializable{private static final long serialVersionUID = 8683452581122892189L;/*** Default initial capacity.* 默认容量10*/private static final int DEFAULT_CAPACITY = 10;/*** Shared empty array instance used for empty instances.* 共享空数组实例,被空实例使用。*/private static final Object[] EMPTY_ELEMENTDATA = {};/*** Shared empty array instance used for default sized empty instances. We* distinguish this from EMPTY_ELEMENTDATA to know how much to inflate when* first element is added.* 共享空数组实例用于默认大小的空实例。区别于EMPTY_ELEMENTDATA是,我们知道在添加第一个元素* 的时候需要扩展多少空间。*/private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};/*** The array buffer into which the elements of the ArrayList are stored.* The capacity of the ArrayList is the length of this array buffer. Any* empty ArrayList with elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA* will be expanded to DEFAULT_CAPACITY when the first element is added.** ArrayList存储元素的array buffer。ArrayList的容量即为elementData的大小。* 任何空ArrayList即elementData等于DEFAULTCAPACITY_EMPTY_ELEMENTDATA,* 当第一个元素被添加时,容量将扩充至DEFAULT_CAPACITY*/// Android-note: Also accessed from java.util.Collectionstransient Object[] elementData; // non-private to simplify nested class access/*** The size of the ArrayList (the number of elements it contains).* ArrayList包含的元素个数* @serial*/private int size;/*** Constructs an empty list with the specified initial capacity.* 使用一个指定容量数构建一个空的list** @param initialCapacity the initial capacity of the list* @throws IllegalArgumentException if the specified initial capacity* is negative*/public ArrayList(int initialCapacity) {if (initialCapacity > 0) {this.elementData = new Object[initialCapacity];} else if (initialCapacity == 0) {this.elementData = EMPTY_ELEMENTDATA;} else {throw new IllegalArgumentException("Illegal Capacity: "+initialCapacity);}}/*** Constructs an empty list with an initial capacity of ten.* 使用容量10构建一个空的list*/public ArrayList() {this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;}/*** Constructs a list containing the elements of the specified* collection, in the order they are returned by the collection's* iterator.** 使用一个已有的collection构建一个list,并包含已有的所有元素,顺序为collection的* 迭代器返回的顺序。** @param c the collection whose elements are to be placed into this list* @throws NullPointerException if the specified collection is null*/public ArrayList(Collection<? extends E> c) {elementData = c.toArray();if ((size = elementData.length) != 0) {// c.toArray might (incorrectly) not return Object[] (see 6260652)if (elementData.getClass() != Object[].class) {//如果指定的Collection的类型不为Object,将会重新创建一个list,类型为ObjectelementData = Arrays.copyOf(elementData, size, Object[].class);}} else {// replace with empty array.this.elementData = EMPTY_ELEMENTDATA;}}/*** Trims the capacity of this <tt>ArrayList</tt> instance to be the* list's current size. An application can use this operation to minimize* the storage of an <tt>ArrayList</tt> instance.* 把ArrayList的实例修改成为list的当前数量。应用程序可以使用这个操作来减少ArrayList实例的存储空间。*/public void trimToSize() {modCount++;//如果ArrayList的大小小于elementData的长度,也就是elementData有空余空间//会通过copyOf重新copy一份大小为size的list,达到减少空间的目的if (size < elementData.length) {elementData = (size == 0)? EMPTY_ELEMENTDATA: Arrays.copyOf(elementData, size);}}/*** Increases the capacity of this <tt>ArrayList</tt> instance, if* necessary, to ensure that it can hold at least the number of elements* specified by the minimum capacity argument.** 增加ArrayList实例的容量,必要时确保了他可以至少保存minCapacity所指定的元素数量。* @param minCapacity the desired minimum capacity*/public void ensureCapacity(int minCapacity) {int minExpand = (elementData != DEFAULTCAPACITY_EMPTY_ELEMENTDATA)// any size if not default element table? 0// larger than default for default empty table. It's already// supposed to be at default size.: DEFAULT_CAPACITY;if (minCapacity > minExpand) {ensureExplicitCapacity(minCapacity);}}private void ensureCapacityInternal(int minCapacity) {if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity);}ensureExplicitCapacity(minCapacity);}private void ensureExplicitCapacity(int minCapacity) {modCount++;// overflow-conscious codeif (minCapacity - elementData.length > 0) {//如果需要增长容量grow(minCapacity);}}/*** The maximum size of array to allocate.* Some VMs reserve some header words in an array.* Attempts to allocate larger arrays may result in* OutOfMemoryError: Requested array size exceeds VM limit* 分配数组的最大值。当尝试分配更大内存时会报异常。*/private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;/*** Increases the capacity to ensure that it can hold at least the* number of elements specified by the minimum capacity argument.** @param minCapacity the desired minimum capacity*/private void grow(int minCapacity) {// overflow-conscious codeint oldCapacity = elementData.length;// newCapacity = 3/2 oldCapacityint newCapacity = oldCapacity + (oldCapacity >> 1);if (newCapacity - minCapacity < 0)newCapacity = minCapacity;if (newCapacity - MAX_ARRAY_SIZE > 0)newCapacity = hugeCapacity(minCapacity);// minCapacity is usually close to size, so this is a win:elementData = Arrays.copyOf(elementData, newCapacity);}private static int hugeCapacity(int minCapacity) {if (minCapacity < 0) // overflowthrow new OutOfMemoryError();return (minCapacity > MAX_ARRAY_SIZE) ?Integer.MAX_VALUE :MAX_ARRAY_SIZE;}/*** Returns the number of elements in this list.* list中元素的个数** @return the number of elements in this list*/public int size() {return size;}/*** Returns <tt>true</tt> if this list contains no elements.* 如果list中没有任何元素,则返回true** @return <tt>true</tt> if this list contains no elements*/public boolean isEmpty() {return size == 0;}/*** Returns <tt>true</tt> if this list contains the specified element.* More formally, returns <tt>true</tt> if and only if this list contains* at least one element <tt>e</tt> such that* <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.** 如果list包含了指定的元素,则返回true。更正式地,当且仅当list包含至少一个元素与指定元素* 相同则返回true。* @param o element whose presence in this list is to be tested* @return <tt>true</tt> if this list contains the specified element*/public boolean contains(Object o) {return indexOf(o) >= 0;}/*** Returns the index of the first occurrence of the specified element* in this list, or -1 if this list does not contain the element.* More formally, returns the lowest index <tt>i</tt> such that* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,* or -1 if there is no such index.* 返回第一个与指定元素相等的index,或者如果list中不包含该元素则返回-1.* 换句话说,也就是当查询到结果会返回index最小的一个,或者查找不到则返回-1.*/public int indexOf(Object o) {if (o == null) {for (int i = 0; i < size; i++) {//找到第一个为null的元素indexif (elementData[i]==null)return i;}} else {for (int i = 0; i < size; i++) {//找到第一个与指定元素相等的非null的 index if (o.equals(elementData[i]))return i;}}//找不到返回-1return -1;}/*** Returns the index of the last occurrence of the specified element* in this list, or -1 if this list does not contain the element.* More formally, returns the highest index <tt>i</tt> such that* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,* or -1 if there is no such index.* 找到在list最后一个元素与指定元素相等的index,如果找不到则返回-1*/public int lastIndexOf(Object o) {if (o == null) {//逆序查找for (int i = size-1; i >= 0; i--)if (elementData[i]==null)return i;} else {//逆序查找for (int i = size-1; i >= 0; i--)if (o.equals(elementData[i]))return i;}return -1;}/*** Returns a shallow copy of this <tt>ArrayList</tt> instance. (The* elements themselves are not copied.)** 返回一个ArrayList实例的浅拷贝对象。(元素本身不被复制)** @return a clone of this <tt>ArrayList</tt> instance*/public Object clone() {try {//对elementData进行一次copy,但是所包含的元素没有改变。ArrayList<?> v = (ArrayList<?>) super.clone();v.elementData = Arrays.copyOf(elementData, size);v.modCount = 0;return v;} catch (CloneNotSupportedException e) {// this shouldn't happen, since we are Cloneablethrow new InternalError(e);}}/*** Returns an array containing all of the elements in this list* in proper sequence (from first to last element).** <p>The returned array will be "safe" in that no references to it are* maintained by this list. (In other words, this method must allocate* a new array). The caller is thus free to modify the returned array.** <p>This method acts as bridge between array-based and collection-based* APIs.** 返回一个array,包含了在list中的所有元素,并且顺序为从头到尾。* 返回的array是安全的,也就是说没有该列表没有引用返回的arrary。* 换句话说,该方法分配了一个全新的array。* 调用放可以修改返回的数组。** @return an array containing all of the elements in this list in* proper sequence*/public Object[] toArray() {return Arrays.copyOf(elementData, size);}/*** Returns an array containing all of the elements in this list in proper* sequence (from first to last element); the runtime type of the returned* array is that of the specified array. If the list fits in the* specified array, it is returned therein. Otherwise, a new array is* allocated with the runtime type of the specified array and the size of* this list.** <p>If the list fits in the specified array with room to spare* (i.e., the array has more elements than the list), the element in* the array immediately following the end of the collection is set to* <tt>null</tt>. (This is useful in determining the length of the* list <i>only</i> if the caller knows that the list does not contain* any null elements.)** 返回一个array包含了list中所有的元素,顺序为从头到尾。返回的array的运行时类型与给定数组* 类型相同。如果list适配于给定的array,则返回该数组。否则,将会按照指定array的运行时类型* 重新分配一个新的array,并且大小为list的大小。** 如果list适配于指定的array后,有多余空间,例如,指定的array比list有更多的元素,那么* 紧接着集合之后的元素会被设置为null。(仅在调用方知道list* 不包含任何空元素的情况下, 可以确定list长度的)*** @param a the array into which the elements of the list are to*be stored, if it is big enough; otherwise, a new array of the*same runtime type is allocated for this purpose.* @return an array containing the elements of the list* @throws ArrayStoreException if the runtime type of the specified array* is not a supertype of the runtime type of every element in* this list* @throws NullPointerException if the specified array is null*/@SuppressWarnings("unchecked")public <T> T[] toArray(T[] a) {if (a.length < size)// Make a new array of a's runtime type, but my contents:// 如果大小不匹配,则重新生成一个全新的arrayreturn (T[]) Arrays.copyOf(elementData, size, a.getClass());System.arraycopy(elementData, 0, a, 0, size);// 如果指定的array长度大于lsit的size,将紧邻着集合之后的元素设置为nullif (a.length > size)a[size] = null;return a;}/*** Returns the element at the specified position in this list.** 返回在list中指定index位置的元素* @param index index of the element to return* @return the element at the specified position in this list* @throws IndexOutOfBoundsException {@inheritDoc}*/public E get(int index) {if (index >= size)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));return (E) elementData[index];}/*** Replaces the element at the specified position in this list with* the specified element.* 使用指定元素替换指定array中index位置的元素,并返回旧值。** @param index index of the element to replace* @param element element to be stored at the specified position* @return the element previously at the specified position* @throws IndexOutOfBoundsException {@inheritDoc}*/public E set(int index, E element) {if (index >= size)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));E oldValue = (E) elementData[index];elementData[index] = element;return oldValue;}/*** Appends the specified element to the end of this list.** @param e element to be appended to this list* @return <tt>true</tt> (as specified by {@link Collection#add})*/public boolean add(E e) {// 通过ensureCapacityInternal,确保elementData长度+1,试探性增长elementData长度ensureCapacityInternal(size + 1); // Increments modCount!!elementData[size++] = e;return true;}/*** Inserts the specified element at the specified position in this* list. Shifts the element currently at that position (if any) and* any subsequent elements to the right (adds one to their indices).** 插入一个指定的元素在list的指定pos。并且任意后续的元素将后移动,也就是将其索引+1。** @param index index at which the specified element is to be inserted* @param element element to be inserted* @throws IndexOutOfBoundsException {@inheritDoc}*/public void add(int index, E element) {if (index > size || index < 0)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));ensureCapacityInternal(size + 1); // Increments modCount!!// 将目标index及其以后的元素向后整体移动一个位置,// 也就是插入元素的时候会进行一次copy操作System.arraycopy(elementData, index, elementData, index + 1,size - index);//将目标值写到指定pos中elementData[index] = element;size++;}/*** Removes the element at the specified position in this list.* Shifts any subsequent elements to the left (subtracts one from their* indices).** 删除list中指定位置的元素。向左移动后面的所有元素,索引减一。* @param index the index of the element to be removed* @return the element that was removed from the list* @throws IndexOutOfBoundsException {@inheritDoc}*/public E remove(int index) {if (index >= size)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));modCount++;E oldValue = (E) elementData[index];// 获取查到需要移动的元素int numMoved = size - index - 1;// 如果需要移动,那么进行一次copy将后面的元素向前copyif (numMoved > 0)System.arraycopy(elementData, index+1, elementData, index,numMoved);//将最后一个赋值为nullelementData[--size] = null; // clear to let GC do its work// 返回删除位置的元素值return oldValue;}/*** Removes the first occurrence of the specified element from this list,* if it is present. If the list does not contain the element, it is* unchanged. More formally, removes the element with the lowest index* <tt>i</tt> such that* <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>* (if such an element exists). Returns <tt>true</tt> if this list* contained the specified element (or equivalently, if this list* changed as a result of the call).** 如果list中包含指定元素,则移除在list中第一次发现的指定的元素。如果不包含当前元素则不变。* 如果list包含指定的元素则返回true。也就说,如果列表改变了就返回true。** @param o element to be removed from this list, if present* @return <tt>true</tt> if this list contained the specified element*/public boolean remove(Object o) {if (o == null) {for (int index = 0; index < size; index++)// 找到第一个不为null的元素if (elementData[index] == null) {fastRemove(index);return true;}} else {for (int index = 0; index < size; index++)// 找到第一个与给定元素相等的值,进行快速删除if (o.equals(elementData[index])) {fastRemove(index);return true;}}return false;}/** Private remove method that skips bounds checking and does not* return the value removed.* 私有的删除方法,它会跳过边界检查并且不会返回删除的值。*/private void fastRemove(int index) {modCount++;// 检测需要移动的元素个数,并进行移动也就是copyint numMoved = size - index - 1;if (numMoved > 0)System.arraycopy(elementData, index+1, elementData, index,numMoved);elementData[--size] = null; // clear to let GC do its work}/*** Removes all of the elements from this list. The list will* be empty after this call returns.* 删除list中所有的元素。当调用之后,list会变为空。*/public void clear() {modCount++;// 将所有元素变为null// clear to let GC do its workfor (int i = 0; i < size; i++)elementData[i] = null;size = 0;}/*** Appends all of the elements in the specified collection to the end of* this list, in the order that they are returned by the* specified collection's Iterator. The behavior of this operation is* undefined if the specified collection is modified while the operation* is in progress. (This implies that the behavior of this call is* undefined if the specified collection is this list, and this* list is nonempty.)** 将指定集合的所有元素添加到list的尾部,顺序为给定集合的迭代器返回的顺序。* 该操作行为是未定义的,如果指定集合在该操作正在进行的时候被修改了。* 这就意味着,调用行为是未定义的,如果指定集合是list本身,并且list是非空集合。** @param c collection containing elements to be added to this list* @return <tt>true</tt> if this list changed as a result of the call* @throws NullPointerException if the specified collection is null*/public boolean addAll(Collection<? extends E> c) {Object[] a = c.toArray();int numNew = a.length;ensureCapacityInternal(size + numNew); // Increments modCountSystem.arraycopy(a, 0, elementData, size, numNew);size += numNew;return numNew != 0;}/*** Inserts all of the elements in the specified collection into this* list, starting at the specified position. Shifts the element* currently at that position (if any) and any subsequent elements to* the right (increases their indices). The new elements will appear* in the list in the order that they are returned by the* specified collection's iterator.* 将制定的集合的所有元素插入到当前的list中,并在指定位置开始插入。* 移动当前为位置的所有元素并且后续的元素都向右移动。* 在list中的新的元素的顺序与给定集合的迭代器返回的顺序相同。** @param index index at which to insert the first element from the* specified collection* @param c collection containing elements to be added to this list* @return <tt>true</tt> if this list changed as a result of the call* @throws IndexOutOfBoundsException {@inheritDoc}* @throws NullPointerException if the specified collection is null*/public boolean addAll(int index, Collection<? extends E> c) {if (index > size || index < 0)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));Object[] a = c.toArray();int numNew = a.length;ensureCapacityInternal(size + numNew); // Increments modCountint numMoved = size - index;if (numMoved > 0)System.arraycopy(elementData, index, elementData, index + numNew,numMoved);System.arraycopy(a, 0, elementData, index, numNew);size += numNew;return numNew != 0;}/*** Removes from this list all of the elements whose index is between* {@code fromIndex}, inclusive, and {@code toIndex}, exclusive.* Shifts any succeeding elements to the left (reduces their index).* This call shortens the list by {@code (toIndex - fromIndex)} elements.* (If {@code toIndex==fromIndex}, this operation has no effect.)** 删除指定区间的所有元素,fromIndex<= index < toIndex。* 向左移动所有后续的元素。这将会使list缩减(toIndex-fromIndex)个元素。* 如果toIndex==fromIndex,则此操作无效。* @throws IndexOutOfBoundsException if {@code fromIndex} or* {@code toIndex} is out of range* ({@code fromIndex < 0 ||*fromIndex >= size() ||*toIndex > size() ||*toIndex < fromIndex})*/protected void removeRange(int fromIndex, int toIndex) {// Android-changed: Throw an IOOBE if toIndex < fromIndex as documented.// All the other cases (negative indices, or indices greater than the size// will be thrown by System#arrayCopy.if (toIndex < fromIndex) {throw new IndexOutOfBoundsException("toIndex < fromIndex");}modCount++;int numMoved = size - toIndex;System.arraycopy(elementData, toIndex, elementData, fromIndex,numMoved);// clear to let GC do its workint newSize = size - (toIndex-fromIndex);for (int i = newSize; i < size; i++) {elementData[i] = null;}size = newSize;}/*** Constructs an IndexOutOfBoundsException detail message.* Of the many possible refactorings of the error handling code,* this "outlining" performs best with both server and client VMs.*/private String outOfBoundsMsg(int index) {return "Index: "+index+", Size: "+size;}/*** Removes from this list all of its elements that are contained in the* specified collection.** 删除list中所有包含与指定集合相同的元素。* @param c collection containing elements to be removed from this list* @return {@code true} if this list changed as a result of the call* @throws ClassCastException if the class of an element of this list* is incompatible with the specified collection* (<a href="Collection.html#optional-restrictions">optional</a>)* @throws NullPointerException if this list contains a null element and the* specified collection does not permit null elements* (<a href="Collection.html#optional-restrictions">optional</a>),* or if the specified collection is null* @see Collection#contains(Object)*/public boolean removeAll(Collection<?> c) {Objects.requireNonNull(c);return batchRemove(c, false);}/*** Retains only the elements in this list that are contained in the* specified collection. In other words, removes from this list all* of its elements that are not contained in the specified collection.* 只保留list中与指定集合相同的元素。也就是说,移除list所有没有在指定集合中的元素。** @param c collection containing elements to be retained in this list* @return {@code true} if this list changed as a result of the call* @throws ClassCastException if the class of an element of this list* is incompatible with the specified collection* (<a href="Collection.html#optional-restrictions">optional</a>)* @throws NullPointerException if this list contains a null element and the* specified collection does not permit null elements* (<a href="Collection.html#optional-restrictions">optional</a>),* or if the specified collection is null* @see Collection#contains(Object)*/public boolean retainAll(Collection<?> c) {Objects.requireNonNull(c);return batchRemove(c, true);}/*** 批量删除元素,complement决定是保留还是删除指定元素。true保留,false删除*/private boolean batchRemove(Collection<?> c, boolean complement) {final Object[] elementData = this.elementData;int r = 0, w = 0;boolean modified = false;try {for (; r < size; r++)if (c.contains(elementData[r]) == complement)elementData[w++] = elementData[r];} finally {// Preserve behavioral compatibility with AbstractCollection,// even if c.contains() throws.// 如果有崩溃,会将从崩溃的位置后面的元素,依次复制到写入位置。if (r != size) {System.arraycopy(elementData, r,elementData, w,size - r);w += size - r;}if (w != size) {// clear to let GC do its workfor (int i = w; i < size; i++)elementData[i] = null;modCount += size - w;size = w;modified = true;}}return modified;}/*** Save the state of the <tt>ArrayList</tt> instance to a stream (that* is, serialize it).* 将ArrayList的实例转态保存为一个流,也就是序列化它。该方法会被反射的方式使用。* 复写该方法,也就是复写了序列化的默认方法* @serialData The length of the array backing the <tt>ArrayList</tt>* instance is emitted (int), followed by all of its elements* (each an <tt>Object</tt>) in the proper order.*/private void writeObject(java.io.ObjectOutputStream s)throws java.io.IOException{// Write out element count, and any hidden stuffint expectedModCount = modCount;// 执行默认的序列化机制s.defaultWriteObject();// Write out size as capacity for behavioural compatibility with clone()s.writeInt(size);// Write out all elements in the proper order.for (int i=0; i<size; i++) {s.writeObject(elementData[i]);}// 在序列的时候,有线程操作了该list导致结构发生改变,那么将抛出异常。if (modCount != expectedModCount) {throw new ConcurrentModificationException();}// ArrayList的系列化,只是保存了size和elementData}/*** Reconstitute the <tt>ArrayList</tt> instance from a stream (that is,* deserialize it).*/private void readObject(java.io.ObjectInputStream s)throws java.io.IOException, ClassNotFoundException {elementData = EMPTY_ELEMENTDATA;// Read in size, and any hidden stuffs.defaultReadObject();// Read in capacity 读出sizes.readInt(); // ignoredif (size > 0) {// be like clone(), allocate array based upon size not capacityensureCapacityInternal(size);Object[] a = elementData;// Read in all elements in the proper order.for (int i=0; i<size; i++) {a[i] = s.readObject();}}}/*** Returns a list iterator over the elements in this list (in proper* sequence), starting at the specified position in the list.* The specified index indicates the first element that would be* returned by an initial call to {@link ListIterator#next next}.* An initial call to {@link ListIterator#previous previous} would* return the element with the specified index minus one.** 返回一个list所有元素的迭代器,开始于指定的位置。* 指定的index指示着初次调用next所返回的值。* 初次调用previous会返回指定index-1的值。* <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>.** @throws IndexOutOfBoundsException {@inheritDoc}*/public ListIterator<E> listIterator(int index) {if (index < 0 || index > size)throw new IndexOutOfBoundsException("Index: "+index);return new ListItr(index);}/*** Returns a list iterator over the elements in this list (in proper* sequence).* 返回一个包含list所有元素的 list iterator。** <p>The returned list iterator is <a href="#fail-fast"><i>fail-fast</i></a>.** @see #listIterator(int)*/public ListIterator<E> listIterator() {return new ListItr(0);}/*** Returns an iterator over the elements in this list in proper sequence.** 返回一个包含所有list元素的iterator* <p>The returned iterator is <a href="#fail-fast"><i>fail-fast</i></a>.** @return an iterator over the elements in this list in proper sequence*/public Iterator<E> iterator() {return new Itr();}/*** An optimized version of AbstractList.Itr*/private class Itr implements Iterator<E> {// Android-changed: Add "limit" field to detect end of iteration.// The "limit" of this iterator. This is the size of the list at the time the// iterator was created. Adding & removing elements will invalidate the iteration// anyway (and cause next() to throw) so saving this value will guarantee that the// value of hasNext() remains stable and won't flap between true and false when elements// are added and removed from the list.// Android-changed: 添加了limit字段,用来检测迭代器结束。limit是在创建iterator// 时list的size。 添加或者删除元素会引起iteration失效。不管怎样,保存limit值时要保证hasNext()// 的值保持稳定,并且要保证当list中的元素被添加或者删除时不会在true or false之间徘徊。protected int limit = ArrayList.this.size;int cursor; // index of next element to return// 指定最后一个已经通过next返回的元素的indexint lastRet = -1; // index of last element returned; -1 if no suchint expectedModCount = modCount;public boolean hasNext() {return cursor < limit;}@SuppressWarnings("unchecked")public E next() {// 如果结构发生变化,会抛出异常if (modCount != expectedModCount)throw new ConcurrentModificationException();int i = cursor;if (i >= limit)throw new NoSuchElementException();Object[] elementData = ArrayList.this.elementData;if (i >= elementData.length)throw new ConcurrentModificationException();cursor = i + 1;return (E) elementData[lastRet = i];}// 移除最后一个已经通过next获取的元素。public void remove() {if (lastRet < 0)throw new IllegalStateException();if (modCount != expectedModCount)throw new ConcurrentModificationException();try {ArrayList.this.remove(lastRet);cursor = lastRet;lastRet = -1;expectedModCount = modCount;limit--;} catch (IndexOutOfBoundsException ex) {throw new ConcurrentModificationException();}}@Override@SuppressWarnings("unchecked")public void forEachRemaining(Consumer<? super E> consumer) {// 该方法用于,遍历迭代器剩余的元素Objects.requireNonNull(consumer);final int size = ArrayList.this.size;int i = cursor;if (i >= size) {return;}final Object[] elementData = ArrayList.this.elementData;if (i >= elementData.length) {throw new ConcurrentModificationException();}while (i != size && modCount == expectedModCount) {consumer.accept((E) elementData[i++]);}// update once at end of iteration to reduce heap write trafficcursor = i;lastRet = i - 1;if (modCount != expectedModCount)throw new ConcurrentModificationException();}}/*** An optimized version of AbstractList.ListItr* ListItr提供了比Itr更多的功能,可以向前遍历、set、add。*/private class ListItr extends Itr implements ListIterator<E> {ListItr(int index) {super();cursor = index;}public boolean hasPrevious() {return cursor != 0;}public int nextIndex() {return cursor;}public int previousIndex() {return cursor - 1;}@SuppressWarnings("unchecked")public E previous() {if (modCount != expectedModCount)throw new ConcurrentModificationException();int i = cursor - 1;if (i < 0)throw new NoSuchElementException();Object[] elementData = ArrayList.this.elementData;if (i >= elementData.length)throw new ConcurrentModificationException();cursor = i;return (E) elementData[lastRet = i];}public void set(E e) {if (lastRet < 0)throw new IllegalStateException();if (modCount != expectedModCount)throw new ConcurrentModificationException();try {// 在最后一个已经被遍历的index处,设置新值ArrayList.this.set(lastRet, e);} catch (IndexOutOfBoundsException ex) {throw new ConcurrentModificationException();}}public void add(E e) {if (modCount != expectedModCount)throw new ConcurrentModificationException();try {int i = cursor;// 在下一个被遍历的位置,插入一个元素。ArrayList.this.add(i, e);cursor = i + 1;lastRet = -1; // 此操作会重置lastRetexpectedModCount = modCount;limit++;} catch (IndexOutOfBoundsException ex) {throw new ConcurrentModificationException();}}}/*** Returns a view of the portion of this list between the specified* {@code fromIndex}, inclusive, and {@code toIndex}, exclusive. (If* {@code fromIndex} and {@code toIndex} are equal, the returned list is* empty.) The returned list is backed by this list, so non-structural* changes in the returned list are reflected in this list, and vice-versa.* The returned list supports all of the optional list operations.** 返回list在fromIndex<=index<toIndex范围内的子list。如果fromIndex==toIndex相等* 则返回一个空的list。返回的list是受到当前list支持,返回的list与当前list* 没有结构上的变化,反之亦然。返回的list支持当前list的所有操作。*** <p>This method eliminates the need for explicit range operations (of* the sort that commonly exist for arrays). Any operation that expects* a list can be used as a range operation by passing a subList view* instead of a whole list. For example, the following idiom* removes a range of elements from a list:* <pre>*list.subList(from, to).clear();* </pre>** 这个方法是清除操作,其需要指定操作范围。任何操作都期待一个list可以被用来* 作为一个通过传递子list视图来替换整个list的操作范围。例如下面的代码,删除了list中一段范围* 内的元素。** Similar idioms may be constructed for {@link #indexOf(Object)} and* {@link #lastIndexOf(Object)}, and all of the algorithms in the* {@link Collections} class can be applied to a subList.** 类似的语法可以通过indexOf、lastIndexOf构建,并且在Collections的所有语法都应用到一个* 子list中。** <p>The semantics of the list returned by this method become undefined if* the backing list (i.e., this list) is <i>structurally modified</i> in* any way other than via the returned list. (Structural modifications are* those that change the size of this list, or otherwise perturb it in such* a fashion that iterations in progress may yield incorrect results.)** 如果支持的list,也就是原list通过被返回的list修改了结构那么被返回的list会变成未定义的。* 结构变化也就是,list的大小变化,或者以扰乱iteration方式,使进行中产生错误的结果。* @throws IndexOutOfBoundsException {@inheritDoc}* @throws IllegalArgumentException {@inheritDoc}*/public List<E> subList(int fromIndex, int toIndex) {subListRangeCheck(fromIndex, toIndex, size);return new SubList(this, 0, fromIndex, toIndex);}static void subListRangeCheck(int fromIndex, int toIndex, int size) {if (fromIndex < 0)throw new IndexOutOfBoundsException("fromIndex = " + fromIndex);if (toIndex > size)throw new IndexOutOfBoundsException("toIndex = " + toIndex);if (fromIndex > toIndex)throw new IllegalArgumentException("fromIndex(" + fromIndex +") > toIndex(" + toIndex + ")");}/*** SubList类似于代理,所有方法都会传递到parent去执行。但是可以访问的大小范围等都是指定的。* 所有的get\set\remove等方法都是传递给parent去执行。*/private class SubList extends AbstractList<E> implements RandomAccess {private final AbstractList<E> parent;private final int parentOffset;private final int offset;int size;SubList(AbstractList<E> parent,int offset, int fromIndex, int toIndex) {this.parent = parent;this.parentOffset = fromIndex;this.offset = offset + fromIndex;this.size = toIndex - fromIndex;this.modCount = ArrayList.this.modCount;}public E set(int index, E e) {if (index < 0 || index >= this.size)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));if (ArrayList.this.modCount != this.modCount)throw new ConcurrentModificationException();E oldValue = (E) ArrayList.this.elementData[offset + index];ArrayList.this.elementData[offset + index] = e;return oldValue;}public E get(int index) {if (index < 0 || index >= this.size)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));if (ArrayList.this.modCount != this.modCount)throw new ConcurrentModificationException();return (E) ArrayList.this.elementData[offset + index];}public int size() {if (ArrayList.this.modCount != this.modCount)throw new ConcurrentModificationException();return this.size;}public void add(int index, E e) {if (index < 0 || index > this.size)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));if (ArrayList.this.modCount != this.modCount)throw new ConcurrentModificationException();parent.add(parentOffset + index, e);this.modCount = parent.modCount;this.size++;}public E remove(int index) {if (index < 0 || index >= this.size)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));if (ArrayList.this.modCount != this.modCount)throw new ConcurrentModificationException();E result = parent.remove(parentOffset + index);this.modCount = parent.modCount;this.size--;return result;}protected void removeRange(int fromIndex, int toIndex) {if (ArrayList.this.modCount != this.modCount)throw new ConcurrentModificationException();parent.removeRange(parentOffset + fromIndex,parentOffset + toIndex);this.modCount = parent.modCount;this.size -= toIndex - fromIndex;}public boolean addAll(Collection<? extends E> c) {return addAll(this.size, c);}public boolean addAll(int index, Collection<? extends E> c) {if (index < 0 || index > this.size)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));int cSize = c.size();if (cSize==0)return false;if (ArrayList.this.modCount != this.modCount)throw new ConcurrentModificationException();parent.addAll(parentOffset + index, c);this.modCount = parent.modCount;this.size += cSize;return true;}public Iterator<E> iterator() {return listIterator();}public ListIterator<E> listIterator(final int index) {if (ArrayList.this.modCount != this.modCount)throw new ConcurrentModificationException();if (index < 0 || index > this.size)throw new IndexOutOfBoundsException(outOfBoundsMsg(index));final int offset = this.offset;return new ListIterator<E>() {int cursor = index;int lastRet = -1;int expectedModCount = ArrayList.this.modCount;public boolean hasNext() {return cursor != SubList.this.size;}@SuppressWarnings("unchecked")public E next() {if (expectedModCount != ArrayList.this.modCount)throw new ConcurrentModificationException();int i = cursor;if (i >= SubList.this.size)throw new NoSuchElementException();Object[] elementData = ArrayList.this.elementData;if (offset + i >= elementData.length)throw new ConcurrentModificationException();cursor = i + 1;return (E) elementData[offset + (lastRet = i)];}public boolean hasPrevious() {return cursor != 0;}@SuppressWarnings("unchecked")public E previous() {if (expectedModCount != ArrayList.this.modCount)throw new ConcurrentModificationException();int i = cursor - 1;if (i < 0)throw new NoSuchElementException();Object[] elementData = ArrayList.this.elementData;if (offset + i >= elementData.length)throw new ConcurrentModificationException();cursor = i;return (E) elementData[offset + (lastRet = i)];}@SuppressWarnings("unchecked")public void forEachRemaining(Consumer<? super E> consumer) {Objects.requireNonNull(consumer);final int size = SubList.this.size;int i = cursor;if (i >= size) {return;}final Object[] elementData = ArrayList.this.elementData;if (offset + i >= elementData.length) {throw new ConcurrentModificationException();}while (i != size && modCount == expectedModCount) {consumer.accept((E) elementData[offset + (i++)]);}// update once at end of iteration to reduce heap write trafficlastRet = cursor = i;if (expectedModCount != ArrayList.this.modCount)throw new ConcurrentModificationException();}public int nextIndex() {return cursor;}public int previousIndex() {return cursor - 1;}public void remove() {if (lastRet < 0)throw new IllegalStateException();if (expectedModCount != ArrayList.this.modCount)throw new ConcurrentModificationException();try {SubList.this.remove(lastRet);cursor = lastRet;lastRet = -1;expectedModCount = ArrayList.this.modCount;} catch (IndexOutOfBoundsException ex) {throw new ConcurrentModificationException();}}public void set(E e) {if (lastRet < 0)throw new IllegalStateException();if (expectedModCount != ArrayList.this.modCount)throw new ConcurrentModificationException();try {ArrayList.this.set(offset + lastRet, e);} catch (IndexOutOfBoundsException ex) {throw new ConcurrentModificationException();}}public void add(E e) {if (expectedModCount != ArrayList.this.modCount)throw new ConcurrentModificationException();try {int i = cursor;SubList.this.add(i, e);cursor = i + 1;lastRet = -1;expectedModCount = ArrayList.this.modCount;} catch (IndexOutOfBoundsException ex) {throw new ConcurrentModificationException();}}};}public List<E> subList(int fromIndex, int toIndex) {subListRangeCheck(fromIndex, toIndex, size);return new SubList(this, offset, fromIndex, toIndex);}private String outOfBoundsMsg(int index) {return "Index: "+index+", Size: "+this.size;}public Spliterator<E> spliterator() {if (modCount != ArrayList.this.modCount)throw new ConcurrentModificationException();return new ArrayListSpliterator<E>(ArrayList.this, offset,offset + this.size, this.modCount);}}@Overridepublic void forEach(Consumer<? super E> action) {Objects.requireNonNull(action);final int expectedModCount = modCount;@SuppressWarnings("unchecked")final E[] elementData = (E[]) this.elementData;final int size = this.size;//forEach的方法内部也是传统的for循环方式去迭代for (int i=0; modCount == expectedModCount && i < size; i++) {action.accept(elementData[i]);}// Android-note:// Iterator will not throw a CME if we add something while iterating over the *last* element// forEach will throw a CME in this case.if (modCount != expectedModCount) {throw new ConcurrentModificationException();}}/*** Creates a <em><a href="Spliterator.html#binding">late-binding</a></em>* and <em>fail-fast</em> {@link Spliterator} over the elements in this* list.** <p>The {@code Spliterator} reports {@link Spliterator#SIZED},* {@link Spliterator#SUBSIZED}, and {@link Spliterator#ORDERED}.* Overriding implementations should document the reporting of additional* characteristic values.** @return a {@code Spliterator} over the elements in this list* @since 1.8*/@Overridepublic Spliterator<E> spliterator() {return new ArrayListSpliterator<>(this, 0, -1, 0);}/** Index-based split-by-two, lazily initialized Spliterator */static final class ArrayListSpliterator<E> implements Spliterator<E> {/** If ArrayLists were immutable, or structurally immutable (no* adds, removes, etc), we could implement their spliterators* with Arrays.spliterator. Instead we detect as much* interference during traversal as practical without* sacrificing much performance. We rely primarily on* modCounts. These are not guaranteed to detect concurrency* violations, and are sometimes overly conservative about* within-thread interference, but detect enough problems to* be worthwhile in practice. To carry this out, we (1) lazily* initialize fence and expectedModCount until the latest* point that we need to commit to the state we are checking* against; thus improving precision. (This doesn't apply to* SubLists, that create spliterators with current non-lazy* values). (2) We perform only a single* ConcurrentModificationException check at the end of forEach* (the most performance-sensitive method). When using forEach* (as opposed to iterators), we can normally only detect* interference after actions, not before. Further* CME-triggering checks apply to all other possible* violations of assumptions for example null or too-small* elementData array given its size(), that could only have* occurred due to interference. This allows the inner loop* of forEach to run without any further checks, and* simplifies lambda-resolution. While this does entail a* number of checks, note that in the common case of* list.stream().forEach(a), no checks or other computation* occur anywhere other than inside forEach itself. The other* less-often-used methods cannot take advantage of most of* these streamlinings.*/// 如果ArrayList是不变的,或者结构不变(没有添加、删除等)。我们就可以// 用Arrays.spliterator实现spliterator。相反,我们在遍历过程中检测到尽可能多的冲突,// 而不牺牲大量的性能。我们主要依靠这个字段modCounts。这些不能保证检测并发冲突。// 在线程干扰中有时过于保守,但是在实践过程中发现足够多的问题是值得的。// 贯彻执行,我们是懒加载fence和expectedModCount,直到我们需要使用该值的时候才去初始化// ,从而提高精度。当创建具有当前非惰性的值的spliterators,这不能用于SubLists。// 我们仅在forEach结束时进行一次ConcurrentModificationException检测(性能上最敏感的方法)。// 当时用forEach时(与iterators相反时),我们通常仅在动作之后检测冲突,而不是之前。// 继续CME-triggering检测,适应于所有其他可能违反的假设,例如null或者给定的array的// 元素大小太小,这些仅能因为冲突而发生。允许forEach的内在循环,在没有任何进一步检测的// 的情况下运行,并且lambda-resolution检测也简化了。虽然这需要一些检查,注意// list.stream().forEach(a)一般情况下,不检测或者除内部之外的任何地方的计算都不检测。// 其他较少使用的方法并不能充分利用这些方式。// ArrayListSpliterator是java8才提供的。用来可以把ArrayList进行并行处理。// 后面单独介绍Spliteratorprivate final ArrayList<E> list;private int index; // current index, modified on advance/splitprivate int fence; // -1 until used; then one past last indexprivate int expectedModCount; // initialized when fence set/** Create new spliterator covering the given range */ArrayListSpliterator(ArrayList<E> list, int origin, int fence,int expectedModCount) {this.list = list; // OK if null unless traversedthis.index = origin;this.fence = fence;this.expectedModCount = expectedModCount;}private int getFence() { // initialize fence to size on first useint hi; // (a specialized variant appears in method forEach)ArrayList<E> lst;if ((hi = fence) < 0) {if ((lst = list) == null)hi = fence = 0;else {expectedModCount = lst.modCount;hi = fence = lst.size;}}return hi;}// 尝试去分裂,当前办法为折中分裂。public ArrayListSpliterator<E> trySplit() {int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;return (lo >= mid) ? null : // divide range in half unless too smallnew ArrayListSpliterator<E>(list, lo, index = mid,expectedModCount);}// 尝试获取当前遍历的值,true为查找到结果的返回值。public boolean tryAdvance(Consumer<? super E> action) {if (action == null)throw new NullPointerException();int hi = getFence(), i = index;if (i < hi) {index = i + 1;@SuppressWarnings("unchecked") E e = (E)list.elementData[i];action.accept(e);if (list.modCount != expectedModCount)throw new ConcurrentModificationException();return true;}return false;}// 遍历所有剩余没有遍历的值。public void forEachRemaining(Consumer<? super E> action) {int i, hi, mc; // hoist accesses and checks from loopArrayList<E> lst; Object[] a;if (action == null)throw new NullPointerException();if ((lst = list) != null && (a = lst.elementData) != null) {if ((hi = fence) < 0) {mc = lst.modCount;hi = lst.size;}elsemc = expectedModCount;if ((i = index) >= 0 && (index = hi) <= a.length) {for (; i < hi; ++i) {@SuppressWarnings("unchecked") E e = (E) a[i];action.accept(e);}if (lst.modCount == mc)return;}}throw new ConcurrentModificationException();}// 获取剩余没有遍历的sizepublic long estimateSize() {return (long) (getFence() - index);}public int characteristics() {return Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED;}}// 通过filter.test找出哪些元素需要被删除。@Overridepublic boolean removeIf(Predicate<? super E> filter) {Objects.requireNonNull(filter);// figure out which elements are to be removed// any exception thrown from the filter predicate at this stage// will leave the collection unmodifiedint removeCount = 0;final BitSet removeSet = new BitSet(size);final int expectedModCount = modCount;final int size = this.size;for (int i=0; modCount == expectedModCount && i < size; i++) {@SuppressWarnings("unchecked")final E element = (E) elementData[i];if (filter.test(element)) {// 如果element元素需要删除,则将index对应的removeSet的index位置设置true。removeSet.set(i);removeCount++;}}if (modCount != expectedModCount) {throw new ConcurrentModificationException();}// shift surviving elements left over the spaces left by removed elementsfinal boolean anyToRemove = removeCount > 0;if (anyToRemove) {final int newSize = size - removeCount;for (int i=0, j=0; (i < size) && (j < newSize); i++, j++) {// 找到最近一个为false的元素,也就是没有被删除的元素。i = removeSet.nextClearBit(i);elementData[j] = elementData[i];}for (int k=newSize; k < size; k++) {elementData[k] = null; // Let gc do its work}this.size = newSize;if (modCount != expectedModCount) {throw new ConcurrentModificationException();}modCount++;}return anyToRemove;}// 遍历所有元素,通过operator获取需要改变的值@Override@SuppressWarnings("unchecked")public void replaceAll(UnaryOperator<E> operator) {Objects.requireNonNull(operator);final int expectedModCount = modCount;final int size = this.size;for (int i=0; modCount == expectedModCount && i < size; i++) {elementData[i] = operator.apply((E) elementData[i]);}if (modCount != expectedModCount) {throw new ConcurrentModificationException();}modCount++;}//进行排序@Override@SuppressWarnings("unchecked")public void sort(Comparator<? super E> c) {final int expectedModCount = modCount;Arrays.sort((E[]) elementData, 0, size, c);if (modCount != expectedModCount) {throw new ConcurrentModificationException();}modCount++;}}

大概齐完成了,后面会进行性能的比对。及ArrayListSpliterator的使用。

ArrayList性能还是比较快的,存储了5000个元素花费时间6ms。

如果觉得《小葵花妈妈课堂开课了:《ArrayList源码浅析》》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。