中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

初始化ArrayList集合的方式有幾種

發布時間:2020-06-24 09:24:09 來源:億速云 閱讀:217 作者:Leah 欄目:編程語言

初始化ArrayList集合的方式有幾種?可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

概述

ArrayList是一個以動態數組為基礎實現的非線程安全的集合,ArrayList的元素可以為空、可以重復,同時又是有序的(讀取和存放的順序一致 )。

ArrayList繼承AbstractList,實現了ListRandomAccess(可以快速訪問)、Cloneable(可以被克隆)、java.io.Serializable(支持序列化)

ArrayList的初始化方式有三種:

1、無參構造,默認長度為10,是我們使用的最多的一種初始化方式:

/**
  * Constructs an empty list with an initial capacity of ten.
  */
  public ArrayList() {
      this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
  }

這個時候,我們從源碼中可以看到,里面只有一行代碼:this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA,那么定義的DEFAULTCAPACITY_EMPTY_ELEMENTDATA可以在源碼中找到:

/**
  * Shared empty array instance used for default sized empty instances. We
  * distinguish this from EMPTY_ELEMENTDATA to know how much to inflate when
  * first element is added.
  */
 private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};

通過注釋可以得知,源碼中定義了一個空的數組作為默認的大小,并且在第一個元素添加進來的時候再確定把數組擴充多少,這段邏輯會在接下來添加元素部分作出解釋。

2、指定初始化長度:

/**
  * Constructs 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);
     }
  }

3、用一個Collection對象來構造

/**
     * 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;
        }
    }

看完上述內容,你們對初始化ArrayList集合的方式有進一步的了解嗎?如果還想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴宁市| 青神县| 揭阳市| 法库县| 双流县| 恩施市| 浮梁县| 东乡| 罗平县| 铜鼓县| 岑巩县| 九江县| 乌恰县| 台安县| 松潘县| 罗城| 玉环县| 泰兴市| 汶上县| 平果县| 洛南县| 清涧县| 肇庆市| 钟山县| 龙州县| 安化县| 青阳县| 陵水| 安西县| 宝鸡市| 孟津县| 建平县| 屯留县| 炉霍县| 邢台市| 荔波县| 左云县| 铜川市| 塔河县| 周口市| 沁源县|