一、类签名
源码版本为JDK8,ArrayList实现了 随机存储、克隆、序列化 接口,且多线程操作不安全,需要线程安全请参考:CopyOnWriteArrayList。
1
2
public class ArrayList<E> extends AbstractList<E>
implements List<E>, RandomAccess, Cloneable, java.io.Serializable
二、数据成员
默认初始化大小
1
private static final int DEFAULT_CAPACITY = 10;
构造函数方法参数为0的数组用此空数组标识:
1
private static final Object[] EMPTY_ELEMENTDATA = {};
无参构造方法使用此空数组作为标识,以便初始化数组时决定容量缺省值:
1
private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};
实际保存对象的数组,如果构建前为DEFAULTCAPACITY_EMPTY_ELEMENTDATA
,第一个元素加入时构建序列长度初始化为10。注意数组的类型固定为 Object[]。
1
transient Object[] elementData;
已保存元素数量
1
private int size;
三、构造方法
3.1 默认构造
无参构造方法默认构造大小是10,初始化数组操作延迟到第一个元素加入时进行
1
2
3
public ArrayList() {
this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
}
3.2 指定构造
构造时指定容量,数组所需内存空间会立即创建。如果列表长度较短且可预知,此构造方法能避免动态扩展造成性能损耗
1
2
3
4
5
6
7
8
9
10
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);
}
}
3.3 集合构造
通过集合构建ArrayList,顺序由集合迭代器给定顺序为准,长度与实例c元素数量一致
1
2
3
4
5
6
7
8
9
10
11
public ArrayList(Collection<? extends E> c) {
// 集合c转换为数组后直接赋值给elementData
elementData = c.toArray();
if ((size = elementData.length) != 0) {
if (elementData.getClass() != Object[].class)
elementData = Arrays.copyOf(elementData, size, Object[].class);
} else {
// 空集合构建为空数组列表,等同initialCapacity为0的情况
this.elementData = EMPTY_ELEMENTDATA;
}
}
上面还有一段代码拷贝数组并重新指定类型,原因看以下链接:
-
JDK-6260652 : (coll) Arrays.asList(x).toArray().getClass() should be Object[].class
-
why need to convert type to Object array in ArrayList’s Construction?
四、方法
4.1 裁剪
把列表长度裁剪到实际占用长度,用于释放未占用空间。如果数组没有保存元素就设为空数组,否则缩短数组长度到占用长度。
1
2
3
4
5
6
7
8
public void trimToSize() {
modCount++;
if (size < elementData.length) {
elementData = (size == 0)
? EMPTY_ELEMENTDATA
: Arrays.copyOf(elementData, size);
}
}
4.2 增长
4.2.1 ensureCapacity()
使用默认构造方法指向DEFAULTCAPACITY_EMPTY_ELEMENTDATA
,调用下列方法时minCapacity
大于10,数组才扩增到minCapacity
。
1
2
3
4
5
6
7
8
9
10
public void ensureCapacity(int minCapacity) {
// DEFAULTCAPACITY_EMPTY_ELEMENTDATA -> 10
// EMPTY_ELEMENTDATA -> 0
int minExpand = (elementData != DEFAULTCAPACITY_EMPTY_ELEMENTDATA) ?
0 : DEFAULT_CAPACITY;
if (minCapacity > minExpand) {
ensureExplicitCapacity(minCapacity);
}
}
4.2.2 ensureExplicitCapacity()
1
2
3
4
5
6
7
private void ensureExplicitCapacity(int minCapacity) {
modCount++;
// minCapacity必须比数组长度大才扩展空间
if (minCapacity - elementData.length > 0)
grow(minCapacity);
}
4.2.3 ensureCapacityInternal()
私有方法,取DEFAULT_CAPACITY=10和minCapacity两者最大值
1
2
3
4
5
6
7
private void ensureCapacityInternal(int minCapacity) {
if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {
minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity);
}
ensureExplicitCapacity(minCapacity);
}
4.2.4 MAX_ARRAY_SIZE
数组最大申请空间,有的虚拟机实现会把对象头信息保存在数组中,尝试分配更大内存空间在这种情况下会造成OOM:请求数字大小超过VM的限制。为了保护不同虚拟机实现的安全性,最大申请空间保留一部分空间。
1
private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
4.2.5 grow()
就算minCapacity
比数组长度大,也不一定会采用minCapacity
的值。因为每次数组扩增不是在原数组上扩展,而是创建新数组并拷贝旧数组内容到新数组。
若每次扩增只增加1个长度,尤其在连续添加新元素的场景下,扩容后废弃的旧数组对象将对GC造成极大压力。
假设旧数组长度是16,根据newCapacity = oldCapacity + (oldCapacity >> 1)
,newCapacity
为16+8=24。如果自定义minCapacity
小于24,则方法按照24的长度扩增。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
private void grow(int minCapacity) {
// 有溢出检查
int oldCapacity = elementData.length;
int newCapacity = oldCapacity + (oldCapacity >> 1);
// 取计算值与minCapacity大者
if (newCapacity - minCapacity < 0)
newCapacity = minCapacity;
// 上溢检查
if (newCapacity - MAX_ARRAY_SIZE > 0)
newCapacity = hugeCapacity(minCapacity);
elementData = Arrays.copyOf(elementData, newCapacity);
}
先下溢检查,然后进行上溢检查
1
2
3
4
5
6
7
8
9
10
private static int hugeCapacity(int minCapacity) {
// 下溢检查
if (minCapacity < 0)
throw new OutOfMemoryError();
// 限制数组的最大容量
return (minCapacity > MAX_ARRAY_SIZE) ?
Integer.MAX_VALUE :
MAX_ARRAY_SIZE;
}
4.3 元素查找
查找指定元素的序号。若元素是空对象,则找数组遇到第一个null的下标。其他情况,找到元素返回下标,找不到返回-1
1
2
3
4
5
6
7
8
9
10
11
12
public int indexOf(Object o) {
if (o == null) {
for (int i = 0; i < size; i++)
if (elementData[i]==null)
return i;
} else {
for (int i = 0; i < size; i++)
if (o.equals(elementData[i]))
return i;
}
return -1;
}
查指定元素在列表中最后一次出现的索引值,倒序查找
1
2
3
4
5
6
7
8
9
10
11
12
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;
}
4.4 浅克隆
正常来说不会出现CloneNotSupportedException
,因为本身实现了Cloneable
接口
1
2
3
4
5
6
7
8
9
10
public Object clone() {
try {
ArrayList<?> v = (ArrayList<?>) super.clone();
v.elementData = Arrays.copyOf(elementData, size);
v.modCount = 0;
return v;
} catch (CloneNotSupportedException e) {
throw new InternalError(e);
}
}
4.5 返回数组
按照列表原顺序返回新数组
1
2
3
public Object[] toArray() {
return Arrays.copyOf(elementData, size);
}
用自行传入的数组保存列表的元素,类型与传入相同,传入数组下一个多余空位置null。当传入数组长度不足会原地创建新数组,因此实际返回的数组和传入数组不相同
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@SuppressWarnings("unchecked")
public <T> T[] toArray(T[] a) {
// 传入的数组a不足以保存elementData则新创建Array
if (a.length < size)
// Make a new array of a's runtime type, but my contents:
return (T[]) Arrays.copyOf(elementData, size, a.getClass());
// 传入的数组a足够存放elementData
System.arraycopy(elementData, 0, a, 0, size);
// 数组下一个位置置为null
if (a.length > size)
a[size] = null;
return a;
}
4.6 返回指定下标元素
返回指定位置的元素,无下标检查
1
2
3
4
@SuppressWarnings("unchecked")
E elementData(int index) {
return (E) elementData[index];
}
返回指定位置的元素,带下标检查
1
2
3
4
5
public E get(int index) {
rangeCheck(index);
return elementData(index);
}
用新的对象替换指定位置的对象,并返回原位置旧对象
1
2
3
4
5
6
7
public E set(int index, E element) {
rangeCheck(index);
E oldValue = elementData(index);
elementData[index] = element;
return oldValue;
}
4.7 加入
增加元素,用 已保存数量+1 去检查是否超过数组长度
1
2
3
4
5
6
7
public boolean add(E e) {
// 检查数组空间
ensureCapacityInternal(size + 1);
// 对应位置存入元素
elementData[size++] = e;
return true;
}
在指定位置增加新元素,原位置以及其后元素子序列向后移动
1
2
3
4
5
6
7
8
9
10
public void add(int index, E element) {
rangeCheckForAdd(index);
ensureCapacityInternal(size + 1);
// 插入位置及后续元素全部向后移一位
System.arraycopy(elementData, index, elementData, index + 1,
size - index);
elementData[index] = element;
size++;
}
把集合保存的元素追加到ArrayList尾部
1
2
3
4
5
6
7
8
9
10
11
12
public boolean addAll(Collection<? extends E> c) {
// 把Collection转换为数组类型
Object[] a = c.toArray();
// 统计a的元素数量,用于计算需要扩展容量的大小
int numNew = a.length;
ensureCapacityInternal(size + numNew);
// 把集合的元素逐一拷贝到列表的尾部
System.arraycopy(a, 0, elementData, size, numNew);
// 更新列表的元素数量size
size += numNew;
return numNew != 0;
}
在指定位置插入若干元素
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public boolean addAll(int index, Collection<? extends E> c) {
rangeCheckForAdd(index);
// 集合转换为数组
Object[] a = c.toArray();
int numNew = a.length;
// 检查列表空间并决定扩容
ensureCapacityInternal(size + numNew);
// 列表原位置某段元素整体向后挪动numMoved位
int 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;
}
4.8 移除、清空
移除指定位置的元素,后续元素组成的子序列依次向前移动位置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public E remove(int index) {
// 检查索引是否越界
rangeCheck(index);
modCount++;
// 获取索引元素
E oldValue = elementData(index);
// 移除队尾元素不需要调整数组
int numMoved = size - index - 1;
if (numMoved > 0)
System.arraycopy(elementData, index+1, elementData, index,
numMoved);
// 释放索引以便GC
elementData[--size] = null;
return oldValue;
}
移除在列表中第一次遇到的指定对象
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public boolean remove(Object o) {
if (o == null) {
// 查找null
for (int index = 0; index < size; index++)
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;
}
私有方法,没有边界检查,移除的元素不会作为结果返回
1
2
3
4
5
6
7
8
private void fastRemove(int index) {
modCount++;
int numMoved = size - index - 1;
if (numMoved > 0)
System.arraycopy(elementData, index+1, elementData, index,
numMoved);
elementData[--size] = null; // 释放索引以便GC
}
移除列表中所有元素且size置0。 移出对象被回收但ArrayList占用数组空间不会释放
1
2
3
4
5
6
7
8
9
public void clear() {
modCount++;
// 释放被引用的对象,以便VM进行GC。注:请自行参考Java GC Roots工作方式
for (int i = 0; i < size; i++)
elementData[i] = null;
size = 0;
}
移除指定范围包含的元素并修改size
1
2
3
4
5
6
7
8
9
10
11
12
protected void removeRange(int fromIndex, int toIndex) {
modCount++;
int numMoved = size - toIndex;
System.arraycopy(elementData, toIndex, elementData, fromIndex,
numMoved);
int newSize = size - (toIndex-fromIndex);
for (int i = newSize; i < size; i++) {
elementData[i] = null;
}
size = newSize;
}
下标检查
1
2
3
4
private void rangeCheck(int index) {
if (index >= size)
throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
}
私有方法,检查下标越界
1
2
3
4
private void rangeCheckForAdd(int index) {
if (index > size || index < 0)
throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
}
移除交集部分元素
1
2
3
4
public boolean removeAll(Collection<?> c) {
Objects.requireNonNull(c);
return batchRemove(c, false);
}
移除未包含在集合的元素,即保留交集部分
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
27
28
29
30
31
32
33
public boolean retainAll(Collection<?> c) {
Objects.requireNonNull(c);
return batchRemove(c, true);
}
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) {
// 释放索引以便GC
for (int i = w; i < size; i++)
elementData[i] = null;
modCount += size - w;
size = w;
modified = true;
}
}
return modified;
}