ArrayList源碼分析

ArrayList介紹

對(duì)于ArrayList院溺,相信大家都很熟悉岖妄,天天都會(huì)接觸到它。JangGwa從源碼角度再和你一起熟悉一下够挂,先簡(jiǎn)單介紹下ArrayList。

1.基于數(shù)組實(shí)現(xiàn),是一個(gè)動(dòng)態(tài)數(shù)組,其容量能自動(dòng)增長(zhǎng)。

2.ArrayList不是線程安全的昆咽,建議在單線程中使用办悟,多線程可以選擇Vector或CopyOnWriteArrayList霜幼。

3.實(shí)現(xiàn)了RandomAccess接口,可以通過下標(biāo)序號(hào)進(jìn)行快速訪問誉尖。

4.實(shí)現(xiàn)了Cloneable接口,能被克隆铸题。

5.實(shí)現(xiàn)了Serializable接口铡恕,支持序列化

ArrayList源碼解析

ArrayList繼承了AbstractList并實(shí)現(xiàn)了List,RandomAccess, Cloneable, java.io.Serializable 接口丢间,上面做了相應(yīng)的介紹就不再闡述了探熔。關(guān)鍵我們看兩個(gè)重要的屬性elementDatasize

elementData:保存了添加到ArrayList中的元素烘挫。實(shí)際上诀艰,elementData是個(gè)動(dòng)態(tài)數(shù)組,我們能通過構(gòu)造函數(shù) ArrayList(int initialCapacity)來執(zhí)行它的初始容量為initialCapacity饮六;如果通過不含參數(shù)的構(gòu)造函數(shù)ArrayList()來創(chuàng)建ArrayList其垄,則elementData的容量默認(rèn)是10。

size: 動(dòng)態(tài)數(shù)組的實(shí)際大小卤橄。

public class ArrayList<E> extends AbstractList<E>
    implements List<E>, RandomAccess, Cloneable, java.io.Serializable
{

private static final long serialVersionUID = 8683452581122892189L;

private transient Object[] elementData;

private int size;

// ArrayList帶容量大小的構(gòu)造函數(shù)绿满。
public ArrayList(int initialCapacity) {
    super();
    if (initialCapacity < 0)
        throw new IllegalArgumentException("Illegal Capacity: "+
                                           initialCapacity);
    this.elementData = new Object[initialCapacity];
}

// ArrayList無參構(gòu)造函數(shù)。默認(rèn)容量是10窟扑。
public ArrayList() {
    this(10);
}

elementData數(shù)組的大小會(huì)根據(jù)ArrayList容量的增長(zhǎng)而動(dòng)態(tài)的增長(zhǎng)喇颁,具體的增長(zhǎng)方式,下面的ensureCapacity()函數(shù)會(huì)告訴你答案嚎货。

// 若ArrayList的容量不足以容納當(dāng)前的全部元素橘霎,設(shè)置新的容量=“(原始容量x3)/2 + 1”
public void ensureCapacity(int minCapacity) {
    modCount++;
    int oldCapacity = elementData.length;
    if (minCapacity > oldCapacity) {
        Object oldData[] = elementData;
        int newCapacity = (oldCapacity * 3)/2 + 1;
        if (newCapacity < minCapacity)
            newCapacity = minCapacity;
        elementData = Arrays.copyOf(elementData, newCapacity);
    }
}

定位

// 獲取index位置的元素值
public E get(int index) {
    RangeCheck(index);

    return (E) elementData[index];
}

private void RangeCheck(int index) {
if (index >= size)
    throw new IndexOutOfBoundsException(
    "Index: "+index+", Size: "+size);
}

添加

// 添加元素e
public boolean add(E e) {
    // 確定ArrayList的容量大小
    ensureCapacity(size + 1);  // Increments modCount!!
    // 添加e到ArrayList中
    elementData[size++] = e;
    return true;
}


// 將e添加到ArrayList的指定位置
public void add(int index, E element) {
    if (index > size || index < 0)
        throw new IndexOutOfBoundsException(
        "Index: "+index+", Size: "+size);

    ensureCapacity(size+1);  // Increments modCount!!
    System.arraycopy(elementData, index, elementData, index + 1,
         size - index);
    elementData[index] = element;
    size++;
}

// 將集合c追加到ArrayList中
public boolean addAll(Collection<? extends E> c) {
    Object[] a = c.toArray();
    int numNew = a.length;
    ensureCapacity(size + numNew);  // Increments modCount
    System.arraycopy(a, 0, elementData, size, numNew);
    size += numNew;
    return numNew != 0;
}

// 從index位置開始,將集合c添加到ArrayList
public boolean addAll(int index, Collection<? extends E> c) {
    if (index > size || index < 0)
        throw new IndexOutOfBoundsException(
        "Index: " + index + ", Size: " + size);

    Object[] a = c.toArray();
    int numNew = a.length;
    ensureCapacity(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;
}

刪除

// 刪除ArrayList指定位置的元素
public E remove(int index) {
    RangeCheck(index);

    modCount++;
    E oldValue = (E) elementData[index];

    int numMoved = size - index - 1;
    if (numMoved > 0)
        System.arraycopy(elementData, index+1, elementData, index,
             numMoved);
    elementData[--size] = null; // Let gc do its work

    return oldValue;
}

// 刪除ArrayList的指定元素
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;
}

// 快速刪除第index個(gè)元素
private void fastRemove(int index) {
    modCount++;
    int numMoved = size - index - 1;
    // 從"index+1"開始殖属,用后面的元素替換前面的元素姐叁。
    if (numMoved > 0)
        System.arraycopy(elementData, index+1, elementData, index,
                         numMoved);
    elementData[--size] = null; // Let gc do its work
}

//刪除元素
public boolean remove(Object o) {
    if (o == null) {
        for (int index = 0; index < size; index++)
        if (elementData[index] == null) {
            fastRemove(index);
        return true;
        }
    } else {
        // 便利ArrayList,找到“元素o”忱辅,則刪除七蜘,并返回true。
        for (int index = 0; index < size; index++)
        if (o.equals(elementData[index])) {
            fastRemove(index);
        return true;
        }
    }
    return false;
}

// 刪除fromIndex到toIndex之間的全部元素墙懂。
protected void removeRange(int fromIndex, int toIndex) {
    modCount++;
    int numMoved = size - toIndex;
    System.arraycopy(elementData, toIndex, elementData, fromIndex, numMoved);
    }

清空ArrayList

public void clear() {
    modCount++;

    for (int i = 0; i < size; i++)
        elementData[i] = null;

    size = 0;
}

克隆函數(shù)

public Object clone() {
    try {
        ArrayList<E> v = (ArrayList<E>) super.clone();
        // 將當(dāng)前ArrayList的全部元素拷貝到v中
        v.elementData = Arrays.copyOf(elementData, size);
        v.modCount = 0;
        return v;
    } catch (CloneNotSupportedException e) {
        // this shouldn't happen, since we are Cloneable
        throw new InternalError();
    }
}

總結(jié)

  • ArrayList 實(shí)際上是通過一個(gè)數(shù)組去保存數(shù)據(jù)的橡卤。當(dāng)我們使用無參構(gòu)造函數(shù)構(gòu)造ArrayList時(shí),則ArrayList的默認(rèn)容量大小是10损搬。

  • 當(dāng)ArrayList容量不足以容納全部元素時(shí)碧库,ArrayList會(huì)重新設(shè)置容量:新的容量=“(原始容量x3)/2 + 1”;如果設(shè)置后的新容量還不夠柜与,則直接把新容量設(shè)置為傳入的參數(shù)

  • ArrayList查找效率高嵌灰,插入刪除元素的效率低弄匕。

  • ArrayList的克隆函數(shù),即是將全部元素克隆到一個(gè)數(shù)組中沽瞭。

  • ArrayList實(shí)現(xiàn)java.io.Serializable的方式迁匠。當(dāng)寫入到輸出流時(shí),先寫入“容量”驹溃,再依次寫入“每一個(gè)元素”城丧;當(dāng)讀出輸入流時(shí),先讀取“容量”豌鹤,再依次讀取“每一個(gè)元素”亡哄。

  • toArray()會(huì)拋出“java.lang.ClassCastException”異常

原因:toArray()返回的是 Object[] 數(shù)組,Java不支持向下轉(zhuǎn)型布疙。(例如蚊惯,將Object[]轉(zhuǎn)換為的Integer[])

解決方案:

public static Integer[] vectorToArray2(ArrayList<Integer> v) {
    Integer[] newText = (Integer[])v.toArray(new Integer[0]);
    return newText;
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市灵临,隨后出現(xiàn)的幾起案子截型,更是在濱河造成了極大的恐慌,老刑警劉巖儒溉,帶你破解...
    沈念sama閱讀 211,743評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件菠劝,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡睁搭,警方通過查閱死者的電腦和手機(jī)赶诊,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來园骆,“玉大人舔痪,你說我怎么就攤上這事⌒客伲” “怎么了锄码?”我有些...
    開封第一講書人閱讀 157,285評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)晌涕。 經(jīng)常有香客問我滋捶,道長(zhǎng),這世上最難降的妖魔是什么余黎? 我笑而不...
    開封第一講書人閱讀 56,485評(píng)論 1 283
  • 正文 為了忘掉前任重窟,我火速辦了婚禮,結(jié)果婚禮上惧财,老公的妹妹穿的比我還像新娘巡扇。我一直安慰自己扭仁,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評(píng)論 6 386
  • 文/花漫 我一把揭開白布厅翔。 她就那樣靜靜地躺著乖坠,像睡著了一般。 火紅的嫁衣襯著肌膚如雪刀闷。 梳的紋絲不亂的頭發(fā)上熊泵,一...
    開封第一講書人閱讀 49,821評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音甸昏,去河邊找鬼戈次。 笑死,一個(gè)胖子當(dāng)著我的面吹牛筒扒,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播绊寻,決...
    沈念sama閱讀 38,960評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼花墩,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了澄步?” 一聲冷哼從身側(cè)響起冰蘑,我...
    開封第一講書人閱讀 37,719評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎村缸,沒想到半個(gè)月后祠肥,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,186評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡梯皿,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評(píng)論 2 327
  • 正文 我和宋清朗相戀三年仇箱,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片东羹。...
    茶點(diǎn)故事閱讀 38,650評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡剂桥,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出属提,到底是詐尸還是另有隱情权逗,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評(píng)論 4 330
  • 正文 年R本政府宣布冤议,位于F島的核電站斟薇,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏恕酸。R本人自食惡果不足惜堪滨,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評(píng)論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望蕊温。 院中可真熱鬧椿猎,春花似錦惶岭、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至筐咧,卻和暖如春鸯旁,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背量蕊。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評(píng)論 1 266
  • 我被黑心中介騙來泰國(guó)打工铺罢, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人残炮。 一個(gè)月前我還...
    沈念sama閱讀 46,370評(píng)論 2 360
  • 正文 我出身青樓韭赘,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親势就。 傳聞我的和親對(duì)象是個(gè)殘疾皇子泉瞻,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容

  • ArrayList是在Java中最常用的集合之一,其本質(zhì)上可以當(dāng)做是一個(gè)可擴(kuò)容的數(shù)組苞冯,可以添加重復(fù)的數(shù)據(jù)袖牙,也支持隨...
    ShawnIsACoder閱讀 570評(píng)論 4 7
  • ArrayList 認(rèn)識(shí) ArrayList是最常見以及每個(gè)Java開發(fā)者最熟悉的集合類了 elementData...
    zlb閱讀 144評(píng)論 0 0
  • ArrayList是基于數(shù)組實(shí)現(xiàn)的,是一個(gè)動(dòng)態(tài)數(shù)組舅锄,其容量能自動(dòng)增長(zhǎng)鞭达,類似于C語言中的動(dòng)態(tài)申請(qǐng)內(nèi)存,動(dòng)態(tài)增長(zhǎng)內(nèi)存皇忿。...
    小帝Ele閱讀 260評(píng)論 0 2
  • 定義 除了實(shí)現(xiàn)了List接口畴蹭,還實(shí)現(xiàn)了RandomAccess,Cloneable, java.io.Serial...
    zhanglbjames閱讀 423評(píng)論 0 0
  • 面對(duì)發(fā)脾氣的小孩鳍烁,很多父母也容易把自己變成小孩撮胧。 前一段跟一朋友聊天,她說的最多的就是她2歲的女兒如何讓自己費(fèi)心老翘,...
    愛家心理閱讀 1,432評(píng)論 0 0