摘要:集合作為初始化參數(shù)構(gòu)造一個包含指定的元素的列表,這些元素按照該的迭代器返回它們的順序排列的。還可以根據(jù)對象找到對象所在位置,調(diào)用函數(shù)快速刪除位置上的元素,也就是比少了個邊界檢查。
首先放一張Java集合接口圖:
Collection是一個獨立元素序列,這些元素都服從一條或多條規(guī)則,List必須按照插入的順序保存元素,而Set不能有重復(fù)元素,Queue按照排隊規(guī)則來確定對象產(chǎn)生的順序。
List在Collection的基礎(chǔ)上添加了大量的方法,使得可以在List的中間插入和移除元素。
有2種類型的List:
ArrayList 它長于隨機訪問元素,但是在List中間插入和移除元素較慢。
LinkedList 它通過代價較低的方式在List中間進行插入和刪除,但是在隨機訪問方面相對較慢,但是它的特性急較ArrayList大。
還有個第一代容器Vector,后面僅作比較。
下面正式進入ArrayList實現(xiàn)原理,主要參考Java8 ArrayList源碼
類定義
public class ArrayList
implements List, RandomAccess, Cloneable, java.io.Serializable
ArrayList 繼承了AbstractList并且實現(xiàn)了List,所以具有添加,修改,刪除,遍歷等功能
實現(xiàn)了RandomAccess接口,支持隨機訪問
實現(xiàn)了Cloneable接口,支持Clone
實現(xiàn)了Serualizable接口,可以被序列化
底層數(shù)據(jù)結(jié)構(gòu)
transient Object[] elementData; //存放元素的數(shù)組 private int size; //ArrayList實際存放的元素數(shù)量
ArrayList的底層實際是通過一個Object的數(shù)組實現(xiàn),數(shù)組本身有個容量capacity,實際存儲的元素個數(shù)為size,當(dāng)做一些操作,例如插入操作導(dǎo)致數(shù)組容量不夠時,ArrayList就會自動擴容,也就是調(diào)節(jié)capacity的大小。
初始化
指定容量大小初始化
/** C * onstructs an empty list with the specified initial capacity. * * @param initialCapacity the initial capacity of the list * @throws IllegalArgumentException if the specified initial capacity * is negative */ public ArrayList(int initialCapacity) { if (initialCapacity > 0) { this.elementData = new Object[initialCapacity]; } else if (initialCapacity == 0) { this.elementData = EMPTY_ELEMENTDATA; } else { throw new IllegalArgumentException("Illegal Capacity: "+ initialCapacity); } }
初始化一個指定容量的空集合,若是容量為0,集合為空集合,其中
private static final Object[] EMPTY_ELEMENTDATA = {};,容量也為0。
無參數(shù)初始化
public ArrayList() { this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA; }
無參數(shù)初始化,其實DEFAULTCAPACITY_EMPTY_ELEMENTDATA的定義也為:
private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};與EMPTY_ELEMENTDATA的區(qū)別是當(dāng)?shù)谝粋€元素被插入時,數(shù)組就會自動擴容到10,具體見下文說add方法時的解釋。
集合作為初始化參數(shù)
/** * Constructs a list containing the elements of the specified * collection, in the order they are returned by the collection"s * iterator. * * @param c the collection whose elements are to be placed into this list * @throws NullPointerException if the specified collection is null */ public ArrayList(Collection extends E> c) { elementData = c.toArray(); if ((size = elementData.length) != 0) { // c.toArray might (incorrectly) not return Object[] (see 6260652) if (elementData.getClass() != Object[].class) elementData = Arrays.copyOf(elementData, size, Object[].class); } else { // replace with empty array. this.elementData = EMPTY_ELEMENTDATA; } }
構(gòu)造一個包含指定 collection 的元素的列表,這些元素按照該collection的迭代器返回它們的順序排列的。
size和IsEmpty
首先是兩個最簡單的操作:
public int size() { return size; } public boolean isEmpty() { return size == 0; }
都是依靠size值,直接獲取容器內(nèi)元素的個數(shù),判斷是否為空集合。
Set 和Get操作
Set和Get操作都是直接操作集合下標(biāo)
public E set(int index, E element) { rangeCheck(index); E oldValue = elementData(index); elementData[index] = element; return oldValue; } public E get(int index) { rangeCheck(index); return elementData(index); }
在操作之前都會做RangeCheck檢查,如果index超過size,則會報IndexOutOfBoundsException錯誤。
elementData的操作實際就是基于下標(biāo)的訪問,所以ArrayList 長于隨機訪問元素,復(fù)雜度為O(1)。
@SuppressWarnings("unchecked") E elementData(int index) { return (E) elementData[index]; } Contain public boolean contains(Object o) { return indexOf(o) >= 0; }
contains 函數(shù)基于indexOf函數(shù),如果第一次出現(xiàn)的位置大于等于0,說明ArrayList就包含該元素, IndexOf的實現(xiàn)如下:
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; }
ArrayList是接受null值的,如果不存在該元素,則會返回-1,所以contains判斷是否大于等于0來判斷是否包含指定元素。
Add和Remove
public boolean add(E e) { ensureCapacityInternal(size + 1); // Increments modCount!! elementData[size++] = e; return true; }
首先確保已有的容量在已使用長度加1后還能存下下一個元素,這里正好分析下用來確保ArrayList容量ensureCapacityInternal函數(shù):
private void ensureCapacityInternal(int minCapacity) { if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) { minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity); } ensureExplicitCapacity(minCapacity); }
這邊可以返回看一開始空參數(shù)初始化,this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA, 空參數(shù)初始化的ArrayList添加第一個元素,上面的if語句就會調(diào)用,DEFAULT_CAPACITY定義為10,所以空參數(shù)初始化的ArrayList一開始添加元素,容量就變?yōu)?0,在確定了minCapacity后,還要調(diào)用ensureExplicitCapacity(minCapacity)去真正的增長容量:
private void ensureExplicitCapacity(int minCapacity) { modCount++; // overflow-conscious code if (minCapacity - elementData.length > 0) grow(minCapacity); }
這里modCount默默記錄ArrayList被修改的次數(shù), 然后是判斷是否需要擴充數(shù)組容量,如果當(dāng)前數(shù)組所需要的最小容量大于數(shù)組現(xiàn)有長度,就調(diào)用自動擴容函數(shù)grow:
private void grow(int minCapacity) { // overflow-conscious code int oldCapacity = elementData.length; int newCapacity = oldCapacity + (oldCapacity >> 1); //擴充為原來的1.5倍 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); }
oldCapacity記錄數(shù)組原有長度,newCapacity直接將長度擴展為原來的1.5倍,如果1.5倍的長度大于需要擴充的容量(minCapacity),就只擴充到minCapacity,如果newCapacity大于數(shù)組最大長度MAX_ARRAY_SIZE,就只擴容到MAX_ARRAY_SIZE大小,關(guān)于MAX_ARRAY_SIZE為什么是private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;,我文章里就不深究了,感興趣的可以參考stackoverflow上的有關(guān)回答:
Why the maximum array size of ArrayList is Integer.MAX_VALUE - 8?
Add還提供兩個參數(shù)的形式,支持在指定位置添加元素。
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位置起的所有元素后移一位,然后在index處插入元素。
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; }
Remove接口也很好理解了,存儲index位置的值到oldView作為返回值,將index后面所有的元素都向前拷貝一位,不要忘記的是還要將原來最后的位置標(biāo)記為null,以便讓垃圾收集器自動GC這塊內(nèi)存。
還可以根據(jù)對象Remove:
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; }
找到對象所在位置,調(diào)用FastRemove函數(shù)快速刪除index位置上的元素,F(xiàn)astRemove也就是比remove(index)少了個邊界檢查。
clear
/** * Removes all of the elements from this list. The list will * be empty after this call returns. */ public void clear() { modCount++; // clear to let GC do its work for (int i = 0; i < size; i++) elementData[i] = null; size = 0; }
由于Java有GC機制,所以不需要手動釋放內(nèi)存,只要將ArrayList所有元素都標(biāo)記為null,垃圾收集器就會自動收集這些內(nèi)存。
Add和Remove都提供了一系列的批量操作接口:
public boolean addAll(Collection extends E> c);
public boolean addAll(int index, Collection extends E> c);
protected void removeRange(int fromIndex, int toIndex) ;
public boolean removeAll(Collection> c) ;
相比于單文件一次只集體向前或向后移動一位,批量操作需要移動Collection 長度的距離。
Iterator與fast_fail
首先看看ArrayList里迭代器是如何實現(xiàn)的:
private class Itr implements Iterator{ int cursor; // 記錄下一個返回元素的index,一開始為0 int lastRet = -1; // index of last element returned; -1 if no such int expectedModCount = modCount; //這邊確保產(chǎn)生迭代器時,就將當(dāng)前modCount賦給expectedModCount public boolean hasNext() { return cursor != size; } @SuppressWarnings("unchecked") public E next() { checkForComodification(); int i = cursor; //訪問元素的index if (i >= size) throw new NoSuchElementException(); Object[] elementData = ArrayList.this.elementData; if (i >= elementData.length) throw new ConcurrentModificationException(); cursor = i + 1; //不斷加1,只要不斷調(diào)用next,就可以遍歷List return (E) elementData[lastRet = i]; //lastRet在這里會記錄最近返回元素的位置 } public void remove() { if (lastRet < 0) throw new IllegalStateException(); checkForComodification(); try { ArrayList.this.remove(lastRet); //調(diào)用List本身的remove函數(shù),刪除最近返回的元素 cursor = lastRet; lastRet = -1; expectedModCount = modCount; //上面的Remove函數(shù)會改變modCount,所以這邊expectedModCount需要更新 } 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(); } }
ArrayList里可以通過iterator方法獲取迭代器,iterator方法就是new一個上述迭代器對象:
public Iteratoriterator() { return new Itr(); }
那么我們看看Itr類的主要方法:
next :獲取序列的下一個元素
hasNext:檢查序列中是否還有元素
remove:將迭代器新近返回的元素刪除
在next和remove操作之前,都會調(diào)用checkForComodification函數(shù),如果modCount和本身記錄的expectedModCount不一致,就證明集合在別處被修改過,拋出ConcurrentModificationException異常,產(chǎn)生fail-fast事件。
fail-fast 機制是java集合(Collection)中的一種錯誤機制。當(dāng)多個線程對同一個集合的內(nèi)容進行操作時,就可能會產(chǎn)生fail-fast事件。
例如:當(dāng)某一個線程A通過iterator去遍歷某集合的過程中,若該集合的內(nèi)容被其他線程所改變了;那么線程A訪問集合時,就會拋出ConcurrentModificationException異常,產(chǎn)生fail-fast事件。
一般多線程環(huán)境下,可以考慮使用CopyOnWriteArrayList來避免fail-fast。
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/70392.html
摘要:未來的主要發(fā)布基于。在中調(diào)用函數(shù)支持從代碼中直接調(diào)用定義在腳本文件中的函數(shù)。下面的函數(shù)稍后會在端調(diào)用為了調(diào)用函數(shù),你首先需要將腳本引擎轉(zhuǎn)換為。調(diào)用函數(shù)將結(jié)果輸出到,所以我們會首先看到輸出。幸運的是,有一套補救措施。 原文:Java 8 Nashorn Tutorial 譯者:飛龍 協(xié)議:CC BY-NC-SA 4.0 這個教程中,你會通過簡單易懂的代碼示例,來了解Nashorn Ja...
摘要:之前,使用匿名類給蘋果排序的代碼是的,這段代碼看上去并不是那么的清晰明了,使用表達式改進后或者是不得不承認(rèn),代碼看起來跟清晰了。這是由泛型接口內(nèi)部實現(xiàn)方式造成的。 # Lambda表達式在《Java8實戰(zhàn)》中第三章主要講的是Lambda表達式,在上一章節(jié)的筆記中我們利用了行為參數(shù)化來因?qū)Σ粩嘧兓男枨螅詈笪覀円彩褂玫搅薒ambda,通過表達式為我們簡化了很多代碼從而極大地提高了我們的...
摘要:但是到了第二天,他突然告訴你其實我還想找出所有重量超過克的蘋果。現(xiàn)在,農(nóng)民要求需要篩選紅蘋果。那么,我們就可以根據(jù)條件創(chuàng)建一個類并且實現(xiàn)通過謂詞篩選紅蘋果并且是重蘋果酷,現(xiàn)在方法的行為已經(jīng)取決于通過對象來實現(xiàn)了。 通過行為參數(shù)化傳遞代碼 行為參數(shù)化 在《Java8實戰(zhàn)》第二章主要介紹的是通過行為參數(shù)化傳遞代碼,那么就來了解一下什么是行為參數(shù)化吧。 在軟件工程中,一個從所周知的問題就是,...
摘要:表達式體現(xiàn)了函數(shù)式編程的思想,即一個函數(shù)亦可以作為另一個函數(shù)參數(shù)和返回值,使用了函數(shù)作參數(shù)返回值的函數(shù)被稱為高階函數(shù)。對流對象進行及早求值,返回值不在是一個對象。 Java8主要的改變是為集合框架增加了流的概念,提高了集合的抽象層次。相比于舊有框架直接操作數(shù)據(jù)的內(nèi)部處理方式,流+高階函數(shù)的外部處理方式對數(shù)據(jù)封裝更好。同時流的概念使得對并發(fā)編程支持更強。 在語法上Java8提供了Lamb...
摘要:快速寫入和讀取文件話不多說,先看題隨機生成的記錄,如,每行一條記錄,總共萬記錄,寫入文本文件編碼,然后讀取文件,的前兩個字符相同的,其年薪累加,比如,萬,個人,最后做排序和分組,輸出年薪總額最高的組萬,人萬,人位隨機,隨機隨機,年薪總 JAVA8快速寫入和讀取文件? 話不多說,先看題: 隨機生成 Salary {name, baseSalary, bonus }的記錄,如wxxx,1...
閱讀 2612·2021-11-15 11:38
閱讀 2626·2021-11-04 16:13
閱讀 18061·2021-09-22 15:07
閱讀 1025·2019-08-30 15:55
閱讀 3270·2019-08-30 14:15
閱讀 1672·2019-08-29 13:59
閱讀 3226·2019-08-28 18:28
閱讀 1582·2019-08-23 18:29