ArrayList
是咱們經常使用的集合類,是基於數組實現的。不一樣於數組的是ArrayList
能夠動態擴容。java
ArrayList
是Java
集合框架List
接口的一個實現類。提供了一些操做數組元素的方法。數組
實現List
接口同時,也實現了 RandomAccess
, Cloneable
, java.io.Serializable
。安全
ArrayList
繼承與AbstractList
。多線程
transient Object[] elementData;複製代碼
elementData
是用於保存數據的數組,是ArrayList
類的基礎。併發
elementData
是被關鍵字transient
修飾的。咱們知道被transient
修飾的變量,是不會參與對象序列化和反序列化操做的。而咱們知道ArrayList
實現了java.io.Serializable
,這就代表ArrayList
是可序列化的類,這裏貌似出現了矛盾。框架
ArrayList
在序列化和反序列化的過程當中,有兩個值得關注的方法:writeObject
和 readObject
:dom
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();
}
}
}複製代碼
writeObject
會將ArrayList
中的size
和element
數據寫入ObjectOutputStream
。readObject
會從ObjectInputStream
讀取size
和element
數據。ide
之因此採用這種序列化方式,是出於性能的考量。由於ArrayList
中elementData
數組在add
元素的過程,容量不夠時會動態擴容,這就到可能會有空間沒有存儲元素。採用上述序列化方式,能夠保證只序列化有實際值的數組元素,從而節約時間和空間。函數
private int size;複製代碼
size
是ArrayList
的大小。性能
/** * Default initial capacity. */
private static final int DEFAULT_CAPACITY = 10;複製代碼
ArrayList
默認容量是10。
ArrayList
提供了2個構造函數ArrayList(int initialCapacity)
和 ArrayList()
。
使用有參構造函數初始化ArrayList
須要指定初始容量大小,不然採用默認值10。
public boolean add(E e) {
ensureCapacityInternal(size + 1); // Increments modCount!!
elementData[size++] = e;
return true;
}複製代碼
在add
元素以前,會調用ensureCapacityInternal
方法,來判斷當前數組是否須要擴容。
private void ensureCapacityInternal(int minCapacity) {
if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {
// 若是elementData爲空數組,指定elementData最少須要多少容量。
// 若是初次add,將取默認值10;
minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity);
}
ensureExplicitCapacity(minCapacity);
}
private void ensureExplicitCapacity(int minCapacity) {
modCount++;
// overflow-conscious code
// elementData容量不足的狀況下進行擴容
if (minCapacity - elementData.length > 0)
grow(minCapacity);
}
private void grow(int minCapacity) {
// overflow-conscious code
int oldCapacity = elementData.length;
int 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);
}複製代碼
從grow
方法中能夠看出,ArrayList
的elementData
數組如遇到容量不足時,將會把新容量newCapacity
設置爲 oldCapacity + (oldCapacity >> 1)
。二進制位操做>> 1
等同於/2
的效果,擴容致使的newCapacity
也就設置爲原先的1.5倍。
若是新的容量大於MAX_ARRAY_SIZE
。將會調用hugeCapacity
將int
的最大值賦給newCapacity
。不過這種狀況通常不會用到,不多會用到這麼大的ArrayList
。
在確保有容量的狀況下,會將元素添加至elementData
數組中。
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++;
}複製代碼
帶有index
的add
方法相對於直接add
元素方法會略有不一樣。
rangeCheckForAdd
來檢查,要添加的index
是否存在數組越界問題;ensureCapacityInternal
來保證容量;System.arraycopy
方法複製數組,空出elementData[index]
的位置;size
;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);
elementData[--size] = null; // clear to let GC do its work
return oldValue;
}複製代碼
ArryList
提供了兩個刪除List
元素的方法,如上所示,就是根據index
來刪除元素。
index
是否越界;System.arraycopy
方法將待刪除的元素移動至elementData
最後一位。elementData
最後一位賦值爲null。public boolean remove(Object o) {
if (o == 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;
}複製代碼
remove(Object o)
是根據元素刪除的,相對來講就要麻煩一點:
o
爲空的時候,遍歷數組刪除空的元素。o
不爲空的時候,遍歷數組找出於o
元素的index
,並刪除元素。false
。在add
、remove
過程當中,常常發現會有modCount++
或者modCount--
操做。這裏來看下modCount
是個啥玩意。
modCount
變量是在AbstractList
中定義的。
protected transient int modCount = 0;複製代碼
modCount
是一個int
型變量,用來記錄ArrayList
結構變化的次數。
modCount
起做用的地方是在使用iterator
的時候。ArrayList
的iterator
方法。
public Iterator<E> iterator() {
return new Itr();
}
private class Itr implements Iterator<E> {
int cursor; // index of next element to return
int lastRet = -1; // index of last element returned; -1 if no such
int expectedModCount = modCount;
public boolean hasNext() {
return cursor != size;
}
@SuppressWarnings("unchecked")
public E next() {
checkForComodification();
int i = cursor;
if (i >= size)
throw new NoSuchElementException();
Object[] elementData = ArrayList.this.elementData;
if (i >= elementData.length)
throw new ConcurrentModificationException();
cursor = i + 1;
return (E) elementData[lastRet = i];
}
public void remove() {
if (lastRet < 0)
throw new IllegalStateException();
checkForComodification();
try {
ArrayList.this.remove(lastRet);
cursor = lastRet;
lastRet = -1;
expectedModCount = modCount;
} 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 traffic
cursor = i;
lastRet = i - 1;
checkForComodification();
}
final void checkForComodification() {
if (modCount != expectedModCount)
throw new ConcurrentModificationException();
}
}複製代碼
iterator
方法會返回私有內部類Itr
的一個實例。這裏能夠看到Itr
類中不少方法,都會調用checkForComodification
方法。來檢查modCount
是夠等於expectedModCount
。若是發現modCount != expectedModCount
將會拋出ConcurrentModificationException
異常。
這裏寫一個小例子來驗證體會下modCount
的做用。簡單介紹一下這個小例子:準備兩個線程t1
、t2
,兩個線程對同一個ArrayList
進行操做,t1
線程將循環向ArrayList
中添加元素,t2
線程將把ArrayList
元素讀出來。
Test
類:
public class Test {
List<String> list = new ArrayList<String>();
public Test() {
}
public void add() {
for (int i = 0; i < 10000; i++) {
list.add(String.valueOf(i));
}
}
public void read() {
Iterator iterator = list.iterator();
while (iterator.hasNext()) {
System.out.println(iterator.next());
}
}複製代碼
t1
線程:
public class Test1Thread implements Runnable {
private Test test;
public Test1Thread(Test test) {
this.test = test;
}
public void run() {
test.add();
}複製代碼
t2
線程:
public class Test2Thread implements Runnable {
private Test test;
public Test2Thread(Test test) {
this.test = test;
}
public void run() {
test.read();
}
}複製代碼
main
類
public static void main(String[] args) throws InterruptedException {
Test test = new Test();
Thread t1 = new Thread(new Test1Thread(test));
Thread t2 = new Thread(new Test2Thread(test));
t1.start();
t2.start();
}複製代碼
執行這個mian
類就會發現程序將拋出一個ConcurrentModificationException
異常。
由異常能夠發現拋出異常點正處於在調用next
方法的checkForComodification
方法出現了異常。這裏也就出現上文描述的modCount != expectedModCount
的狀況,緣由是t2
線程在讀數據的時候,t1
線程還在不斷的添加元素。
這裏modCount
的做用也就顯而易見了,用modCount
來規避多線程中併發的問題。由此也能夠看出ArrayList
是非線程安全的類。