【Java集合源碼剖析】ArrayList源碼剖析

轉自:http://blog.csdn.NET/ns_code/article/details/35568011

 

ArrayList簡介

    ArrayList是基於數組實現的,是一個動態數組,其容量能自動增長,類似於C語言中的動態申請內存,動態增長內存。

    ArrayList不是線程安全的,只能用在單線程環境下,多線程環境下可以考慮用Collections.synchronizedList(List l)函數返回一個線程安全的ArrayList類,也可以使用concurrent併發包下的CopyOnWriteArrayList類。

    ArrayList實現了Serializable接口,因此它支持序列化,能夠通過序列化傳輸,實現了RandomAccess接口,支持快速隨機訪問,實際上就是通過下標序號進行快速訪問,實現了Cloneable接口,能被克隆。


ArrayList源碼剖析

    ArrayList的源碼如下(加入了比較詳細的註釋):

[java] view plain copy
 
 在CODE上查看代碼片派生到我的代碼片
  1. package java.util;    
  2.    
  3. public class ArrayList<E> extends AbstractList<E>    
  4.         implements List<E>, RandomAccess, Cloneable, java.io.Serializable    
  5. {    
  6.     // 序列版本號    
  7.     private static final long serialVersionUID = 8683452581122892189L;    
  8.    
  9.     // ArrayList基於該數組實現,用該數組保存數據   
  10.     private transient Object[] elementData;    
  11.    
  12.     // ArrayList中實際數據的數量    
  13.     private int size;    
  14.    
  15.     // ArrayList帶容量大小的構造函數。    
  16.     public ArrayList(int initialCapacity) {    
  17.         super();    
  18.         if (initialCapacity < 0)    
  19.             throw new IllegalArgumentException("Illegal Capacity: "+    
  20.                                                initialCapacity);    
  21.         // 新建一個數組    
  22.         this.elementData = new Object[initialCapacity];    
  23.     }    
  24.    
  25.     // ArrayList無參構造函數。默認容量是10。    
  26.     public ArrayList() {    
  27.         this(10);    
  28.     }    
  29.    
  30.     // 創建一個包含collection的ArrayList    
  31.     public ArrayList(Collection<? extends E> c) {    
  32.         elementData = c.toArray();    
  33.         size = elementData.length;    
  34.         if (elementData.getClass() != Object[].class)    
  35.             elementData = Arrays.copyOf(elementData, size, Object[].class);    
  36.     }    
  37.    
  38.    
  39.     // 將當前容量值設爲實際元素個數    
  40.     public void trimToSize() {    
  41.         modCount++;    
  42.         int oldCapacity = elementData.length;    
  43.         if (size < oldCapacity) {    
  44.             elementData = Arrays.copyOf(elementData, size);    
  45.         }    
  46.     }    
  47.    
  48.    
  49.     // 確定ArrarList的容量。    
  50.     // 若ArrayList的容量不足以容納當前的全部元素,設置 新的容量=“(原始容量x3)/2 + 1”    
  51.     public void ensureCapacity(int minCapacity) {    
  52.         // 將“修改統計數”+1,該變量主要是用來實現fail-fast機制的    
  53.         modCount++;    
  54.         int oldCapacity = elementData.length;    
  55.         // 若當前容量不足以容納當前的元素個數,設置 新的容量=“(原始容量x3)/2 + 1”    
  56.         if (minCapacity > oldCapacity) {    
  57.             Object oldData[] = elementData;    
  58.             int newCapacity = (oldCapacity * 3)/2 + 1;    
  59.             //如果還不夠,則直接將minCapacity設置爲當前容量  
  60.             if (newCapacity < minCapacity)    
  61.                 newCapacity = minCapacity;    
  62.             elementData = Arrays.copyOf(elementData, newCapacity);    
  63.         }    
  64.     }    
  65.    
  66.     // 添加元素e    
  67.     public boolean add(E e) {    
  68.         // 確定ArrayList的容量大小    
  69.         ensureCapacity(size + 1);  // Increments modCount!!    
  70.         // 添加e到ArrayList中    
  71.         elementData[size++] = e;    
  72.         return true;    
  73.     }    
  74.    
  75.     // 返回ArrayList的實際大小    
  76.     public int size() {    
  77.         return size;    
  78.     }    
  79.    
  80.     // ArrayList是否包含Object(o)    
  81.     public boolean contains(Object o) {    
  82.         return indexOf(o) >= 0;    
  83.     }    
  84.    
  85.     //返回ArrayList是否爲空    
  86.     public boolean isEmpty() {    
  87.         return size == 0;    
  88.     }    
  89.    
  90.     // 正向查找,返回元素的索引值    
  91.     public int indexOf(Object o) {    
  92.         if (o == null) {    
  93.             for (int i = 0; i < size; i++)    
  94.             if (elementData[i]==null)    
  95.                 return i;    
  96.             } else {    
  97.                 for (int i = 0; i < size; i++)    
  98.                 if (o.equals(elementData[i]))    
  99.                     return i;    
  100.             }    
  101.             return -1;    
  102.         }    
  103.    
  104.         // 反向查找,返回元素的索引值    
  105.         public int lastIndexOf(Object o) {    
  106.         if (o == null) {    
  107.             for (int i = size-1; i >= 0; i--)    
  108.             if (elementData[i]==null)    
  109.                 return i;    
  110.         } else {    
  111.             for (int i = size-1; i >= 0; i--)    
  112.             if (o.equals(elementData[i]))    
  113.                 return i;    
  114.         }    
  115.         return -1;    
  116.     }    
  117.    
  118.     // 反向查找(從數組末尾向開始查找),返回元素(o)的索引值    
  119.     public int lastIndexOf(Object o) {    
  120.         if (o == null) {    
  121.             for (int i = size-1; i >= 0; i--)    
  122.             if (elementData[i]==null)    
  123.                 return i;    
  124.         } else {    
  125.             for (int i = size-1; i >= 0; i--)    
  126.             if (o.equals(elementData[i]))    
  127.                 return i;    
  128.         }    
  129.         return -1;    
  130.     }    
  131.      
  132.    
  133.     // 返回ArrayList的Object數組    
  134.     public Object[] toArray() {    
  135.         return Arrays.copyOf(elementData, size);    
  136.     }    
  137.    
  138.     // 返回ArrayList元素組成的數組  
  139.     public <T> T[] toArray(T[] a) {    
  140.         // 若數組a的大小 < ArrayList的元素個數;    
  141.         // 則新建一個T[]數組,數組大小是“ArrayList的元素個數”,並將“ArrayList”全部拷貝到新數組中    
  142.         if (a.length < size)    
  143.             return (T[]) Arrays.copyOf(elementData, size, a.getClass());    
  144.    
  145.         // 若數組a的大小 >= ArrayList的元素個數;    
  146.         // 則將ArrayList的全部元素都拷貝到數組a中。    
  147.         System.arraycopy(elementData, 0, a, 0, size);    
  148.         if (a.length > size)    
  149.             a[size] = null;    
  150.         return a;    
  151.     }    
  152.    
  153.     // 獲取index位置的元素值    
  154.     public E get(int index) {    
  155.         RangeCheck(index);    
  156.    
  157.         return (E) elementData[index];    
  158.     }    
  159.    
  160.     // 設置index位置的值爲element    
  161.     public E set(int index, E element) {    
  162.         RangeCheck(index);    
  163.    
  164.         E oldValue = (E) elementData[index];    
  165.         elementData[index] = element;    
  166.         return oldValue;    
  167.     }    
  168.    
  169.     // 將e添加到ArrayList中    
  170.     public boolean add(E e) {    
  171.         ensureCapacity(size + 1);  // Increments modCount!!    
  172.         elementData[size++] = e;    
  173.         return true;    
  174.     }    
  175.    
  176.     // 將e添加到ArrayList的指定位置    
  177.     public void add(int index, E element) {    
  178.         if (index > size || index < 0)    
  179.             throw new IndexOutOfBoundsException(    
  180.             "Index: "+index+", Size: "+size);    
  181.    
  182.         ensureCapacity(size+1);  // Increments modCount!!    
  183.         System.arraycopy(elementData, index, elementData, index + 1,    
  184.              size - index);    
  185.         elementData[index] = element;    
  186.         size++;    
  187.     }    
  188.    
  189.     // 刪除ArrayList指定位置的元素    
  190.     public E remove(int index) {    
  191.         RangeCheck(index);    
  192.    
  193.         modCount++;    
  194.         E oldValue = (E) elementData[index];    
  195.    
  196.         int numMoved = size - index - 1;    
  197.         if (numMoved > 0)    
  198.             System.arraycopy(elementData, index+1, elementData, index,    
  199.                  numMoved);    
  200.         elementData[--size] = null// Let gc do its work    
  201.    
  202.         return oldValue;    
  203.     }    
  204.    
  205.     // 刪除ArrayList的指定元素    
  206.     public boolean remove(Object o) {    
  207.         if (o == null) {    
  208.                 for (int index = 0; index < size; index++)    
  209.             if (elementData[index] == null) {    
  210.                 fastRemove(index);    
  211.                 return true;    
  212.             }    
  213.         } else {    
  214.             for (int index = 0; index < size; index++)    
  215.             if (o.equals(elementData[index])) {    
  216.                 fastRemove(index);    
  217.                 return true;    
  218.             }    
  219.         }    
  220.         return false;    
  221.     }    
  222.    
  223.    
  224.     // 快速刪除第index個元素    
  225.     private void fastRemove(int index) {    
  226.         modCount++;    
  227.         int numMoved = size - index - 1;    
  228.         // 從"index+1"開始,用後面的元素替換前面的元素。    
  229.         if (numMoved > 0)    
  230.             System.arraycopy(elementData, index+1, elementData, index,    
  231.                              numMoved);    
  232.         // 將最後一個元素設爲null    
  233.         elementData[--size] = null// Let gc do its work    
  234.     }    
  235.    
  236.     // 刪除元素    
  237.     public boolean remove(Object o) {    
  238.         if (o == null) {    
  239.             for (int index = 0; index < size; index++)    
  240.             if (elementData[index] == null) {    
  241.                 fastRemove(index);    
  242.             return true;    
  243.             }    
  244.         } else {    
  245.             // 便利ArrayList,找到“元素o”,則刪除,並返回true。    
  246.             for (int index = 0; index < size; index++)    
  247.             if (o.equals(elementData[index])) {    
  248.                 fastRemove(index);    
  249.             return true;    
  250.             }    
  251.         }    
  252.         return false;    
  253.     }    
  254.    
  255.     // 清空ArrayList,將全部的元素設爲null    
  256.     public void clear() {    
  257.         modCount++;    
  258.    
  259.         for (int i = 0; i < size; i++)    
  260.             elementData[i] = null;    
  261.    
  262.         size = 0;    
  263.     }    
  264.    
  265.     // 將集合c追加到ArrayList中    
  266.     public boolean addAll(Collection<? extends E> c) {    
  267.         Object[] a = c.toArray();    
  268.         int numNew = a.length;    
  269.         ensureCapacity(size + numNew);  // Increments modCount    
  270.         System.arraycopy(a, 0, elementData, size, numNew);    
  271.         size += numNew;    
  272.         return numNew != 0;    
  273.     }    
  274.    
  275.     // 從index位置開始,將集合c添加到ArrayList    
  276.     public boolean addAll(int index, Collection<? extends E> c) {    
  277.         if (index > size || index < 0)    
  278.             throw new IndexOutOfBoundsException(    
  279.             "Index: " + index + ", Size: " + size);    
  280.    
  281.         Object[] a = c.toArray();    
  282.         int numNew = a.length;    
  283.         ensureCapacity(size + numNew);  // Increments modCount    
  284.    
  285.         int numMoved = size - index;    
  286.         if (numMoved > 0)    
  287.             System.arraycopy(elementData, index, elementData, index + numNew,    
  288.                  numMoved);    
  289.    
  290.         System.arraycopy(a, 0, elementData, index, numNew);    
  291.         size += numNew;    
  292.         return numNew != 0;    
  293.     }    
  294.    
  295.     // 刪除fromIndex到toIndex之間的全部元素。    
  296.     protected void removeRange(int fromIndex, int toIndex) {    
  297.     modCount++;    
  298.     int numMoved = size - toIndex;    
  299.         System.arraycopy(elementData, toIndex, elementData, fromIndex,    
  300.                          numMoved);    
  301.    
  302.     // Let gc do its work    
  303.     int newSize = size - (toIndex-fromIndex);    
  304.     while (size != newSize)    
  305.         elementData[--size] = null;    
  306.     }    
  307.    
  308.     private void RangeCheck(int index) {    
  309.     if (index >= size)    
  310.         throw new IndexOutOfBoundsException(    
  311.         "Index: "+index+", Size: "+size);    
  312.     }    
  313.    
  314.    
  315.     // 克隆函數    
  316.     public Object clone() {    
  317.         try {    
  318.             ArrayList<E> v = (ArrayList<E>) super.clone();    
  319.             // 將當前ArrayList的全部元素拷貝到v中    
  320.             v.elementData = Arrays.copyOf(elementData, size);    
  321.             v.modCount = 0;    
  322.             return v;    
  323.         } catch (CloneNotSupportedException e) {    
  324.             // this shouldn't happen, since we are Cloneable    
  325.             throw new InternalError();    
  326.         }    
  327.     }    
  328.    
  329.    
  330.     // java.io.Serializable的寫入函數    
  331.     // 將ArrayList的“容量,所有的元素值”都寫入到輸出流中    
  332.     private void writeObject(java.io.ObjectOutputStream s)    
  333.         throws java.io.IOException{    
  334.     // Write out element count, and any hidden stuff    
  335.     int expectedModCount = modCount;    
  336.     s.defaultWriteObject();    
  337.    
  338.         // 寫入“數組的容量”    
  339.         s.writeInt(elementData.length);    
  340.    
  341.     // 寫入“數組的每一個元素”    
  342.     for (int i=0; i<size; i++)    
  343.             s.writeObject(elementData[i]);    
  344.    
  345.     if (modCount != expectedModCount) {    
  346.             throw new ConcurrentModificationException();    
  347.         }    
  348.    
  349.     }    
  350.    
  351.    
  352.     // java.io.Serializable的讀取函數:根據寫入方式讀出    
  353.     // 先將ArrayList的“容量”讀出,然後將“所有的元素值”讀出    
  354.     private void readObject(java.io.ObjectInputStream s)    
  355.         throws java.io.IOException, ClassNotFoundException {    
  356.         // Read in size, and any hidden stuff    
  357.         s.defaultReadObject();    
  358.    
  359.         // 從輸入流中讀取ArrayList的“容量”    
  360.         int arrayLength = s.readInt();    
  361.         Object[] a = elementData = new Object[arrayLength];    
  362.    
  363.         // 從輸入流中將“所有的元素值”讀出    
  364.         for (int i=0; i<size; i++)    
  365.             a[i] = s.readObject();    
  366.     }    
  367. }  

幾點總結

    關於ArrayList的源碼,給出幾點比較重要的總結:

    1、注意其三個不同的構造方法。無參構造方法構造的ArrayList的容量默認爲10,帶有Collection參數的構造方法,將Collection轉化爲數組賦給ArrayList的實現數組elementData。

    2、注意擴充容量的方法ensureCapacity。ArrayList在每次增加元素(可能是1個,也可能是一組)時,都要調用該方法來確保足夠的容量。當容量不足以容納當前的元素個數時,就設置新的容量爲舊的容量的1.5倍加1,如果設置後的新容量還不夠,則直接新容量設置爲傳入的參數(也就是所需的容量),而後用Arrays.copyof()方法將元素拷貝到新的數組(詳見下面的第3點)。從中可以看出,當容量不夠時,每次增加元素,都要將原來的元素拷貝到一個新的數組中,非常之耗時,也因此建議在事先能確定元素數量的情況下,才使用ArrayList,否則建議使用LinkedList。

    3、ArrayList的實現中大量地調用了Arrays.copyof()和System.arraycopy()方法。我們有必要對這兩個方法的實現做下深入的瞭解。

    首先來看Arrays.copyof()方法。它有很多個重載的方法,但實現思路都是一樣的,我們來看泛型版本的源碼:

[java] view plain copy
 
 在CODE上查看代碼片派生到我的代碼片
  1. public static <T> T[] copyOf(T[] original, int newLength) {  
  2.     return (T[]) copyOf(original, newLength, original.getClass());  
  3. }  

    很明顯調用了另一個copyof方法,該方法有三個參數,最後一個參數指明要轉換的數據的類型,其源碼如下:

[java] view plain copy
 
 在CODE上查看代碼片派生到我的代碼片
  1. public static <T,U> T[] copyOf(U[] original, int newLength, Class<? extends T[]> newType) {  
  2.     T[] copy = ((Object)newType == (Object)Object[].class)  
  3.         ? (T[]) new Object[newLength]  
  4.         : (T[]) Array.newInstance(newType.getComponentType(), newLength);  
  5.     System.arraycopy(original, 0, copy, 0,  
  6.                      Math.min(original.length, newLength));  
  7.     return copy;  
  8. }  

    這裏可以很明顯地看出,該方法實際上是在其內部又創建了一個長度爲newlength的數組,調用System.arraycopy()方法,將原來數組中的元素複製到了新的數組中。

    下面來看System.arraycopy()方法。該方法被標記了native,調用了系統的C/C++代碼,在JDK中是看不到的,但在openJDK中可以看到其源碼。該函數實際上最終調用了C語言的memmove()函數,因此它可以保證同一個數組內元素的正確複製和移動,比一般的複製方法的實現效率要高很多,很適合用來批量處理數組。Java強烈推薦在複製大量數組元素時用該方法,以取得更高的效率。

    4、注意ArrayList的兩個轉化爲靜態數組的toArray方法。

    第一個,Object[] toArray()方法。該方法有可能會拋出java.lang.ClassCastException異常,如果直接用向下轉型的方法,將整個ArrayList集合轉變爲指定類型的Array數組,便會拋出該異常,而如果轉化爲Array數組時不向下轉型,而是將每個元素向下轉型,則不會拋出該異常,顯然對數組中的元素一個個進行向下轉型,效率不高,且不太方便。

    第二個,<T> T[] toArray(T[] a)方法。該方法可以直接將ArrayList轉換得到的Array進行整體向下轉型(轉型其實是在該方法的源碼中實現的),且從該方法的源碼中可以看出,參數a的大小不足時,內部會調用Arrays.copyOf方法,該方法內部創建一個新的數組返回,因此對該方法的常用形式如下:

[java] view plain copy
 
 在CODE上查看代碼片派生到我的代碼片
  1. public static Integer[] vectorToArray2(ArrayList<Integer> v) {    
  2.     Integer[] newText = (Integer[])v.toArray(new Integer[0]);    
  3.     return newText;    
  4. }    

     5、ArrayList基於數組實現,可以通過下標索引直接查找到指定位置的元素,因此查找效率高,但每次插入或刪除元素,就要大量地移動元素,插入刪除元素的效率低。

    6、在查找給定元素索引值等的方法中,源碼都將該元素的值分爲null和不爲null兩種情況處理,ArrayList中允許元素爲null。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章