摘要:集合作為初始化參數構造一個包含指定的元素的列表,這些元素按照該的迭代器返回它們的順序排列的。還可以根據對象找到對象所在位置,調用函數快速刪除位置上的元素,也就是比少了個邊界檢查。
首先放一張Java集合接口圖:
Collection是一個獨立元素序列,這些元素都服從一條或多條規則,List必須按照插入的順序保存元素,而Set不能有重復元素,Queue按照排隊規則來確定對象產生的順序。
List在Collection的基礎上添加了大量的方法,使得可以在List的中間插入和移除元素。
有2種類型的List:
ArrayList 它長于隨機訪問元素,但是在List中間插入和移除元素較慢。
LinkedList 它通過代價較低的方式在List中間進行插入和刪除,但是在隨機訪問方面相對較慢,但是它的特性急較ArrayList大。
還有個第一代容器Vector,后面僅作比較。
下面正式進入ArrayList實現原理,主要參考Java8 ArrayList源碼
類定義
public class ArrayList
implements List, RandomAccess, Cloneable, java.io.Serializable
ArrayList 繼承了AbstractList并且實現了List,所以具有添加,修改,刪除,遍歷等功能
實現了RandomAccess接口,支持隨機訪問
實現了Cloneable接口,支持Clone
實現了Serualizable接口,可以被序列化
底層數據結構
transient Object[] elementData; //存放元素的數組 private int size; //ArrayList實際存放的元素數量
ArrayList的底層實際是通過一個Object的數組實現,數組本身有個容量capacity,實際存儲的元素個數為size,當做一些操作,例如插入操作導致數組容量不夠時,ArrayList就會自動擴容,也就是調節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。
無參數初始化
public ArrayList() { this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA; }
無參數初始化,其實DEFAULTCAPACITY_EMPTY_ELEMENTDATA的定義也為:
private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};與EMPTY_ELEMENTDATA的區別是當第一個元素被插入時,數組就會自動擴容到10,具體見下文說add方法時的解釋。
集合作為初始化參數
/** * 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; } }
構造一個包含指定 collection 的元素的列表,這些元素按照該collection的迭代器返回它們的順序排列的。
size和IsEmpty
首先是兩個最簡單的操作:
public int size() { return size; } public boolean isEmpty() { return size == 0; }
都是依靠size值,直接獲取容器內元素的個數,判斷是否為空集合。
Set 和Get操作
Set和Get操作都是直接操作集合下標
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的操作實際就是基于下標的訪問,所以ArrayList 長于隨機訪問元素,復雜度為O(1)。
@SuppressWarnings("unchecked") E elementData(int index) { return (E) elementData[index]; } Contain public boolean contains(Object o) { return indexOf(o) >= 0; }
contains 函數基于indexOf函數,如果第一次出現的位置大于等于0,說明ArrayList就包含該元素, IndexOf的實現如下:
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函數:
private void ensureCapacityInternal(int minCapacity) { if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) { minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity); } ensureExplicitCapacity(minCapacity); }
這邊可以返回看一開始空參數初始化,this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA, 空參數初始化的ArrayList添加第一個元素,上面的if語句就會調用,DEFAULT_CAPACITY定義為10,所以空參數初始化的ArrayList一開始添加元素,容量就變為10,在確定了minCapacity后,還要調用ensureExplicitCapacity(minCapacity)去真正的增長容量:
private void ensureExplicitCapacity(int minCapacity) { modCount++; // overflow-conscious code if (minCapacity - elementData.length > 0) grow(minCapacity); }
這里modCount默默記錄ArrayList被修改的次數, 然后是判斷是否需要擴充數組容量,如果當前數組所需要的最小容量大于數組現有長度,就調用自動擴容函數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記錄數組原有長度,newCapacity直接將長度擴展為原來的1.5倍,如果1.5倍的長度大于需要擴充的容量(minCapacity),就只擴充到minCapacity,如果newCapacity大于數組最大長度MAX_ARRAY_SIZE,就只擴容到MAX_ARRAY_SIZE大小,關于MAX_ARRAY_SIZE為什么是private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;,我文章里就不深究了,感興趣的可以參考stackoverflow上的有關回答:
Why the maximum array size of ArrayList is Integer.MAX_VALUE - 8?
Add還提供兩個參數的形式,支持在指定位置添加元素。
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后面所有的元素都向前拷貝一位,不要忘記的是還要將原來最后的位置標記為null,以便讓垃圾收集器自動GC這塊內存。
還可以根據對象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; }
找到對象所在位置,調用FastRemove函數快速刪除index位置上的元素,FastRemove也就是比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機制,所以不需要手動釋放內存,只要將ArrayList所有元素都標記為null,垃圾收集器就會自動收集這些內存。
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里迭代器是如何實現的:
private class Itr implements Iterator{ int cursor; // 記錄下一個返回元素的index,一開始為0 int lastRet = -1; // index of last element returned; -1 if no such int expectedModCount = modCount; //這邊確保產生迭代器時,就將當前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,只要不斷調用next,就可以遍歷List return (E) elementData[lastRet = i]; //lastRet在這里會記錄最近返回元素的位置 } public void remove() { if (lastRet < 0) throw new IllegalStateException(); checkForComodification(); try { ArrayList.this.remove(lastRet); //調用List本身的remove函數,刪除最近返回的元素 cursor = lastRet; lastRet = -1; expectedModCount = modCount; //上面的Remove函數會改變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操作之前,都會調用checkForComodification函數,如果modCount和本身記錄的expectedModCount不一致,就證明集合在別處被修改過,拋出ConcurrentModificationException異常,產生fail-fast事件。
fail-fast 機制是java集合(Collection)中的一種錯誤機制。當多個線程對同一個集合的內容進行操作時,就可能會產生fail-fast事件。
例如:當某一個線程A通過iterator去遍歷某集合的過程中,若該集合的內容被其他線程所改變了;那么線程A訪問集合時,就會拋出ConcurrentModificationException異常,產生fail-fast事件。
一般多線程環境下,可以考慮使用CopyOnWriteArrayList來避免fail-fast。
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/70392.html
摘要:未來的主要發布基于。在中調用函數支持從代碼中直接調用定義在腳本文件中的函數。下面的函數稍后會在端調用為了調用函數,你首先需要將腳本引擎轉換為。調用函數將結果輸出到,所以我們會首先看到輸出。幸運的是,有一套補救措施。 原文:Java 8 Nashorn Tutorial 譯者:飛龍 協議:CC BY-NC-SA 4.0 這個教程中,你會通過簡單易懂的代碼示例,來了解Nashorn Ja...
摘要:之前,使用匿名類給蘋果排序的代碼是的,這段代碼看上去并不是那么的清晰明了,使用表達式改進后或者是不得不承認,代碼看起來跟清晰了。這是由泛型接口內部實現方式造成的。 # Lambda表達式在《Java8實戰》中第三章主要講的是Lambda表達式,在上一章節的筆記中我們利用了行為參數化來因對不斷變化的需求,最后我們也使用到了Lambda,通過表達式為我們簡化了很多代碼從而極大地提高了我們的...
摘要:但是到了第二天,他突然告訴你其實我還想找出所有重量超過克的蘋果。現在,農民要求需要篩選紅蘋果。那么,我們就可以根據條件創建一個類并且實現通過謂詞篩選紅蘋果并且是重蘋果酷,現在方法的行為已經取決于通過對象來實現了。 通過行為參數化傳遞代碼 行為參數化 在《Java8實戰》第二章主要介紹的是通過行為參數化傳遞代碼,那么就來了解一下什么是行為參數化吧。 在軟件工程中,一個從所周知的問題就是,...
摘要:表達式體現了函數式編程的思想,即一個函數亦可以作為另一個函數參數和返回值,使用了函數作參數返回值的函數被稱為高階函數。對流對象進行及早求值,返回值不在是一個對象。 Java8主要的改變是為集合框架增加了流的概念,提高了集合的抽象層次。相比于舊有框架直接操作數據的內部處理方式,流+高階函數的外部處理方式對數據封裝更好。同時流的概念使得對并發編程支持更強。 在語法上Java8提供了Lamb...
摘要:快速寫入和讀取文件話不多說,先看題隨機生成的記錄,如,每行一條記錄,總共萬記錄,寫入文本文件編碼,然后讀取文件,的前兩個字符相同的,其年薪累加,比如,萬,個人,最后做排序和分組,輸出年薪總額最高的組萬,人萬,人位隨機,隨機隨機,年薪總 JAVA8快速寫入和讀取文件? 話不多說,先看題: 隨機生成 Salary {name, baseSalary, bonus }的記錄,如wxxx,1...
閱讀 2608·2021-11-15 11:38
閱讀 2623·2021-11-04 16:13
閱讀 18050·2021-09-22 15:07
閱讀 1023·2019-08-30 15:55
閱讀 3269·2019-08-30 14:15
閱讀 1670·2019-08-29 13:59
閱讀 3221·2019-08-28 18:28
閱讀 1580·2019-08-23 18:29