arrayList原始碼
好久不寫部落格啦 最近一直忙著面試,昨天面試官問我讀沒讀過arraylist的原始碼 瞬間矇蔽,今天總結一下,以前感覺原始碼都是好高大上的東西,今天自己結合百度讀啦一下,發現原始碼也並不難,最近會吧jdk中的原始碼自己總結一下。
我用的是jdk1.7
這篇部落格只總結主要的 構造器 add get set等方法 remove iterator contains 其餘的不去總結。有興趣可以自己去讀一下 其實很簡單的 我以前就是以為難從來沒讀過(逃。。)。
private static final long serialVersionUID = 8683452581122892189L;//和序列化有關 /** * Default initial capacity. 預設初始容量 並不是和hashmap的18 */ private static final int DEFAULT_CAPACITY = 10; /** * Shared empty array instance used for empty instances.底層就是一個Object的陣列 就是這麼簡單 後面會看到對它的一些基本操作 */ private static final Object[] 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 == EMPTY_ELEMENTDATA will be expanded to * DEFAULT_CAPACITY when the first element is added. */ private transient Object[] elementData; /** * The size of the ArrayList (the number of elements it contains). * * @serial */ private int size;
接下來我們看一下構造器
public ArrayList(int initialCapacity) { super(); if (initialCapacity < 0) throw new IllegalArgumentException("Illegal Capacity: "+ initialCapacity); this.elementData = new Object[initialCapacity]; } public ArrayList() { super(); this.elementData = EMPTY_ELEMENTDATA; } public ArrayList(Collection<? extends E> c) { elementData = c.toArray(); size = elementData.length; // c.toArray might (incorrectly) not return Object[] (see 6260652) if (elementData.getClass() != Object[].class) elementData = Arrays.copyOf(elementData, size, Object[].class); }
過程也很簡單 如果是空就直接將EMPTY_ELEMENTDATA賦值給elementData 如果不是空 就直接給與一個new Object(),當然先要判讀傳入的引數是不是大於0;如果傳入的是一個Collection就就呼叫toArray()。
public boolean isEmpty() {
return size == 0;
}
public int size() {
return size;
}
public Object[] toArray() { return Arrays.copyOf(elementData, size); }
這三個方法不用解釋啦。
public boolean contains(Object o) {
return indexOf(o) >= 0;
}
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;
}
注意這裡和我們平時的認知不太一樣(最起碼和我的不一樣) contains 並不是在自己裡面遍歷查詢 返回ture和false 而是呼叫
indexof 返回的是一個數字 根據這個數字是否大於0進行判斷。
public boolean add(E e) {
ensureCapacityInternal(size + 1); // Increments modCount!!
elementData[size++] = e;
return true;
}
private void ensureCapacityInternal(int minCapacity) {
if (elementData == EMPTY_ELEMENTDATA) {
minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity);
}
ensureExplicitCapacity(minCapacity);
}
private void ensureExplicitCapacity(int minCapacity) {
modCount++;
// overflow-conscious code
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);
}
被面試官問到的方法,呼叫add發生了什麼。首先呼叫ensureCapacityInternal進行保物件陣列elementData有足夠的容量,可以將新加入的元素e加進去 注意 int newCapacity = oldCapacity + (oldCapacity >> 1); 這裡是擴充套件1.5倍的意思。因為array大小是固定的 所以在grow最後呼叫的是一個Array.copyOf(); 之後就是講新增的元素 elementData[size++] = e; 返回true。
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;
}
private void rangeCheck(int index) {
if (index >= size)
throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
}
get和set都要通過rangeCheck先檢查越不越界 之後進行呼叫。
public Iterator<E> iterator() {
return new Itr();
}
private class Itr implements Iterator<E> {
int cursor = 0;//標記位:標記遍歷到哪一個元素
int expectedModCount = modCount;//標記位:用於判斷是否在遍歷的過程中,是否發生了add、remove操作
//檢測物件陣列是否還有元素
public boolean hasNext() {
return cursor != size();//如果cursor==size,說明已經遍歷完了,上一次遍歷的是最後一個元素
}
//獲取元素
public E next() {
checkForComodification();//檢測在遍歷的過程中,是否發生了add、remove操作
try {
E next = get(cursor++);
return next;
} catch (IndexOutOfBoundsException e) {//捕獲get(cursor++)方法的IndexOutOfBoundsException
checkForComodification();
throw new NoSuchElementException();
}
}
//檢測在遍歷的過程中,是否發生了add、remove等操作
final void checkForComodification() {
if (modCount != expectedModCount)//發生了add、remove操作,這個我們可以檢視add等的原始碼,發現會出現modCount++
throw new ConcurrentModificationException();
}
}