public class ArrayList<E> extends AbstractList<E>
implements List<E>, RandomAccess, Cloneable, java.io.Serializable
分析:ArrayList是继承自AbstractList,同时实现了List接口、RandomAccess接口,Clonable接口、Seriealzable接口。
//AbstractList的源码
public abstract class AbstractList<E> extends AbstractCollection<E> implements List<E>
//RandomAcces接口的源码
public interface RandomAccess {
}
#Collections类中的binarySearch方法
public static <T>
int binarySearch(List<? extends Comparable<? super T>> list, T key) {
#判断是否实现了RandomAccess
if (list instanceof RandomAccess || list.size()<BINARYSEARCH_THRESHOLD)
return Collections.indexedBinarySearch(list, key);
else
return Collections.iteratorBinarySearch(list, key);
}
//序列化版本号
private static final long serialVersionUID = 8683452581122892189L;
/**
* 默认的初始化容量
*/
private static final int DEFAULT_CAPACITY = 10;
/**
* 当设置ArrayList长度为0时的空数组
*/
private static final Object[] EMPTY_ELEMENTDATA = {};
/**
* 初始化时未指定ArrayList的长度时的空数组
*/
private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};
/**
* transient代表不能被序列化。这个数组用于保存数据
*/
transient Object[] elementData; // non-private to simplify nested class access
/**
* ArrayList中实际的数组长度
*
* @serial
*/
private int size;
/**
* 一个参数的构造方法,指定初始化容量
*/
public ArrayList(int initialCapacity) {
if (initialCapacity > 0) {
//如果指定的容量大于0,则创建一个指定长度的数组
this.elementData = new Object[initialCapacity];
} else if (initialCapacity == 0) {
//如果指定的容量为0,就创建一个空的数组
this.elementData = EMPTY_ELEMENTDATA;
} else {
//如果指定的容量小于0,则抛出异常
throw new IllegalArgumentException("Illegal Capacity: "+
initialCapacity);
}
}
/**
* 无参构造方法,创建一个空数组,自动初始化容量为10
*/
public ArrayList() {
this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
}
/**
* 以Collection作为参数的构造方法,主要是实现复制功能
*/
public ArrayList(Collection<? extends E> c) {
//首先将Collection转换为数组并赋值
elementData = c.toArray();
//判断数组的长度是否等于0
if ((size = elementData.length) != 0) {
// 判断是否为Object类型,如果不是的话,就是进行转换
if (elementData.getClass() != Object[].class)
elementData = Arrays.copyOf(elementData, size, Object[].class);
} else {
// 长度等于0,则赋值为空数组
this.elementData = EMPTY_ELEMENTDATA;
}
}
/**
* 在ArrayList的末尾添加上元素
*/
public boolean add(E e) {
ensureCapacityInternal(size + 1); // Increments modCount!!
elementData[size++] = e;
return true;
}
/**
* 在指定的位置添加上元素
*/
public void add(int index, E element) {
rangeCheckForAdd(index);
ensureCapacityInternal(size + 1); // Increments modCount!!
System.arraycopy(elementData, index, elementData, index + 1,
size - index);
elementData[index] = element;
size++;
}
/**
* 将另一个Collection对象添加到当前ArrayList中
*/
public boolean addAll(Collection<? extends E> c) {
Object[] a = c.toArray();
int numNew = a.length;
ensureCapacityInternal(size + numNew); // Increments modCount
System.arraycopy(a, 0, elementData, size, numNew);
size += numNew;
return numNew != 0;
}
/**
* 在指定位置,将另一个Collection对象添加到当前ArrayList中
*/
public boolean addAll(int index, Collection<? extends E> c) {
rangeCheckForAdd(index);
Object[] a = c.toArray();
int numNew = a.length;
ensureCapacityInternal(size + numNew); // Increments modCount
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;
}
public void add(int index, E element) {
//检查要插入的位置是否合法
rangeCheckForAdd(index);
//确保数组的容量够,如果不够,进行扩容操作
ensureCapacityInternal(size + 1); // Increments modCount!!
//将index+1位置到末尾的元素全部往后移动一位
System.arraycopy(elementData, index, elementData, index + 1,
size - index);
//在index位置上插入元素
elementData[index] = element;
//ArrayList的实际容量增加1
size++;
}
/**
* 查看插入位置是否合法
*/
private void rangeCheckForAdd(int index) {
if (index > size || index < 0)
//如果位置不合法就抛出异常
throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
}
/**
* 判断是否是空数组,如果是空数组的话,要设置初始化容量为10
*/
private void ensureCapacityInternal(int minCapacity) {
if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {
//判断是否是空数组,如果是空数组的话,要设置初始化容量为10
minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity);
}
//调用方法。
ensureExplicitCapacity(minCapacity);
}
private void ensureExplicitCapacity(int minCapacity) {
modCount++;
// 判断最小容量是否大于当前数组的长度,如果大于就调用grow()方法进行扩容
if (minCapacity - elementData.length > 0)
grow(minCapacity);
}
private void grow(int minCapacity) {
// 将原数组的容量赋值给oldCapacity
int oldCapacity = elementData.length;
//进行移位运算,将oldCapacity容量扩大为1.5倍赋值给newCapacity
int newCapacity = oldCapacity + (oldCapacity >> 1);
//如果新的容量newCapacity还是小于最小容量,那么就把最小容量赋值给newCapacity
if (newCapacity - minCapacity < 0)
newCapacity = minCapacity;
//如果newCapacity超过了数组的最大容量就要调用hugeCapacity()方法进行扩容
if (newCapacity - MAX_ARRAY_SIZE > 0)
newCapacity = hugeCapacity(minCapacity);
// 利用Arrays.copyOf(elementData, newCapacity)创建一个新数组赋值给elementData,完成扩容
elementData = Arrays.copyOf(elementData, newCapacity);
}
private static int hugeCapacity(int minCapacity) {
//范围不合法
if (minCapacity < 0) // overflow
throw new OutOfMemoryError();
//使用了三元表达式,如果最小容量大于最大数组长度,就返回整数的最大值,否则返回数组最大长度
return (minCapacity > MAX_ARRAY_SIZE) ?
Integer.MAX_VALUE :
MAX_ARRAY_SIZE;
}
/**
* 删除指定位置上的元素
*/
public E remove(int index) {
//首先判断范围是否合法
rangeCheck(index);
//修改次数+1,前面已经提到过了
modCount++;
//获取index位置上的旧值
E oldValue = elementData(index);
//计算删除该位置的元素,需要移动元素的个数
int numMoved = size - index - 1;
if (numMoved > 0)
//将index+1后面的元素全部向前移动1位
System.arraycopy(elementData, index+1, elementData, index,
numMoved);
//将size-1位置的值设置为null,便于垃圾收集
elementData[--size] = null; // clear to let GC do its work
//返回被删除的元素
return oldValue;
}
/**
* 删除指定对象的元素
*/
public boolean remove(Object o) {
//如果对象为null对象
if (o == null) {
//遍历数组
for (int index = 0; index < size; index++)
//如果发现有值为null,调用fastRemove()方法删除元素
if (elementData[index] == null) {
fastRemove(index);
return true;
}
} else {
//遍历数组
for (int index = 0; index < size; index++)
//如果发现有值为o,调用fastRemove()方法删除元素
if (o.equals(elementData[index])) {
fastRemove(index);
return true;
}
}
//没有该元素,返回false
return false;
}
private void fastRemove(int index) {
//修改次数+1
modCount++;
//计算移动元素的个数
int numMoved = size - index - 1;
if (numMoved > 0)
//向前移动一位
System.arraycopy(elementData, index+1, elementData, index,
numMoved);
//最后一位设置位null,利于垃圾收集
elementData[--size] = null; // clear to let GC do its work
}
删除过程中调用了fastRemove(int index)方法,这个方法其实就是将index位置后的元素全部向前移动1位,实现元素删除。
ArrayList中与序列化相关的方法主要有两个, 分别是readObject()以及writeObject()
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException{
// Write out element count, and any hidden stuff
int 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]);
}
if (modCount != expectedModCount) {
throw new ConcurrentModificationException();
}
}
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException, ClassNotFoundException {
elementData = EMPTY_ELEMENTDATA;
// Read in size, and any hidden stuff
s.defaultReadObject();
// Read in capacity
s.readInt(); // ignored
if (size > 0) {
// be like clone(), allocate array based upon size not capacity
ensureCapacityInternal(size);
Object[] a = elementData;
// Read in all elements in the proper order.
for (int i=0; i<size; i++) {
a[i] = s.readObject();
}
}
}
/**
* 将ArrayList的容量缩容为实际大小
*/
public void trimToSize() {
//修改次数+1
modCount++;
//如果实际大小小于容量
if (size < elementData.length) {
//三元表达式进行缩容
elementData = (size == 0)
? EMPTY_ELEMENTDATA
: Arrays.copyOf(elementData, size);
}
}
因为ArrayList的元素数目可能不等于数组的容量,所以有时为了节省空间,会对ArrayList进行缩容操作,将实际大小=数组容量。
/**
* 获取某个元素的位置
*/
public int indexOf(Object o) {
//如果为null
if (o == null) {
//for循环进遍历,如果存在就返回该位置
for (int i = 0; i < size; i++)
if (elementData[i]==null)
return i;
} else {
//不为null,for循环进遍历,如果存在就返回该位置
for (int i = 0; i < size; i++)
if (o.equals(elementData[i]))
return i;
}
//不存在返回-1
return -1;
}
/**
* 逆序获得指定元素的位置
*/
public int lastIndexOf(Object o) {
//如果为null
if (o == null) {
//for循环进遍历,如果存在就返回该位置
for (int i = size-1; i >= 0; i--)
if (elementData[i]==null)
return i;
} else {
//不为null,for循环进遍历,如果存在就返回该位置
for (int i = size-1; i >= 0; i--)
if (o.equals(elementData[i]))
return i;
}
//不存在返回-1
return -1;
}
/**
* 直接调用Arrays.copyOf(elementData, size)返回一个新数组
*/
public Object[] toArray() {
return Arrays.copyOf(elementData, size);
}
/**
* 这个是一个类型转换的方法,将数组转换为指定类型
*/
@SuppressWarnings("unchecked")
public <T> T[] toArray(T[] a) {
if (a.length < size)
// 返回一个T类型的新数组
return (T[]) Arrays.copyOf(elementData, size, a.getClass());
//复制元素
System.arraycopy(elementData, 0, a, 0, size);
//标识作用
if (a.length > size)
a[size] = null;
return a;
}
/**
* 用于批量删除
*/
private boolean batchRemove(Collection<?> c, boolean complement) {
//获取原数组中的元素
final Object[] elementData = this.elementData;
//设置两个指针,初始值为0
int r = 0, w = 0;
//设置标志值modified,初始值为false
boolean modified = false;
try {
//删除操作
for (; r < size; r++)
if (c.contains(elementData[r]) == complement)
elementData[w++] = elementData[r];
} finally {
//如果删除完成后,还有剩的,就补齐到原数组中
if (r != size) {
System.arraycopy(elementData, r,
elementData, w,
size - r);
w += size - r;
}
//如果删除后,新数组的长度小于原数组的长度,将后面的值置位null,便于垃圾收集
if (w != size) {
// clear to let GC do its work
for (int i = w; i < size; i++)
elementData[i] = null;
modCount += size - w;
size = w;
modified = true;
}
}
return modified;
}
/**
* 返回实际大小
*/
public int size() {
return size;
}
/**
* 判断是否为空
*/
public boolean isEmpty() {
return size == 0;
}
/**
* 判断是否包含该元素
*/
public boolean contains(Object o) {
return indexOf(o) >= 0;
}
/**
* 重写Object的克隆方法
*/
public Object clone() {
try {
//调用父类的克隆方法
ArrayList<?> v = (ArrayList<?>) super.clone();
//复制元素
v.elementData = Arrays.copyOf(elementData, size);
//mouCount重置
v.modCount = 0;
return v;
} catch (CloneNotSupportedException e) {
// this shouldn't happen, since we are Cloneable
throw new InternalError(e);
}
}
/**
* 获取指定位置的元素
*/
public E get(int index) {
rangeCheck(index);
return elementData(index);
}
/**
* 设置指定位置的元素值
*/
public E set(int index, E element) {
rangeCheck(index);
E oldValue = elementData(index);
elementData[index] = element;
return oldValue;
}
/**
* 清空ArrayList()
*/
public void clear() {
modCount++;
// clear to let GC do its work
for (int i = 0; i < size; i++)
elementData[i] = null;
size = 0;
}
public static native void arraycopy(Object src, int srcPos,
Object dest, int destPos,
int length);
public static <T,U> T[] copyOf(U[] original, int newLength, Class<? extends T[]> newType) {
@SuppressWarnings("unchecked")
T[] copy = ((Object)newType == (Object)Object[].class)
? (T[]) new Object[newLength]
: (T[]) Array.newInstance(newType.getComponentType(), newLength);
System.arraycopy(original, 0, copy, 0,
Math.min(original.length, newLength));
return copy;
}