91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Java 集合系列(二)ArrayList詳解

發布時間:2020-10-24 20:04:53 來源:腳本之家 閱讀:137 作者:那一葉隨風 欄目:編程語言

ArrayList

ArrayList 是通過一個數組來實現的,因此它是在連續的存儲位置存放對象的引用,只不過它比 Array 更智能,能夠根據集合長度進行自動擴容。

假設讓我們來實現一個簡單的能夠自動擴容的數組,我們最容易想到的點就是:

  1. add()的時候需要判斷當前數組size+1是否等于此時定義的數組大小;
  2. 若小于直接添加即可;否則,需要先擴容再進行添加。

實際上,ArrayList的內部實現原理也是這樣子,我們可以來研究分析一下ArrayList的源碼

add(E e) 源碼分析

/**
   * Appends the specified element to the end of this list.
   *
   * @param e element to be appended to this list
   * @return <tt>true</tt> (as specified by {@link Collection#add})
   */
  public boolean add(E e) {
    ensureCapacityInternal(size + 1);  // 進行擴容校驗
    elementData[size++] = e;      // 將值添加到數組后面,并將 size+1
    return true;
  }



  /**
   * The array buffer into which the elements of the ArrayList are stored.
   * The capacity of the ArrayList is the length of this array buffer. Any
   * empty ArrayList with elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA
   * will be expanded to DEFAULT_CAPACITY when the first element is added.
   */
  transient Object[] elementData; // non-private to simplify nested class access
  
  private void ensureCapacityInternal(int minCapacity) {
    ensureExplicitCapacity(calculateCapacity(elementData, minCapacity));  // elementData 數組
  }



  /**
   * Default initial capacity.
   */
  private static final int DEFAULT_CAPACITY = 10;
  
  /**
   * 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 = {};

  // 返回最大的 index
  private static int calculateCapacity(Object[] elementData, int minCapacity) {
    if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {  // 與空數組實例對比
      return Math.max(DEFAULT_CAPACITY, minCapacity);
    }
    return minCapacity;
  }



  private void ensureExplicitCapacity(int minCapacity) {
    modCount++;

    // overflow-conscious code
    if (minCapacity - elementData.length > 0)
      grow(minCapacity);
  }

擴容調用方法,實際也就是數組復制的過程

/**
   * Increases the capacity to ensure that it can hold at least the
   * number of elements specified by the minimum capacity argument.
   *
   * @param minCapacity the desired minimum capacity
   */
  private void grow(int minCapacity) {
    // overflow-conscious code
    int oldCapacity = elementData.length;
    int newCapacity = oldCapacity + (oldCapacity >> 1);
    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);
  }

add(int index, E element) 源碼分析

/**
   * Inserts the specified element at the specified position in this
   * list. Shifts the element currently at that position (if any) and
   * any subsequent elements to the right (adds one to their indices).
   *
   * @param index index at which the specified element is to be inserted
   * @param element element to be inserted
   * @throws IndexOutOfBoundsException {@inheritDoc}
   */
  public void add(int index, E element) {
    rangeCheckForAdd(index);  // 校驗index是否超過當前定義的數組大小范圍,超過則拋出 IndexOutOfBoundsException

    ensureCapacityInternal(size + 1); // Increments modCount!!
    System.arraycopy(elementData, index, elementData, index + 1,
             size - index);   // 復制,向后移動
    elementData[index] = element;
    size++;
  }
  

  /**
   * A version of rangeCheck used by add and addAll.
   */
  private void rangeCheckForAdd(int index) {
    if (index > size || index < 0)
      throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
  }

從上面的源碼分析可知,擴容和隨機插入元素的消耗比較大,因此在實際開發中,應盡量指定ArrayList大小,減少在隨機插入操作。

優缺點

優點

  1. 封裝了一個動態再分配的對象數組
  2. 使用索引進行隨機訪問效率高

缺陷

  1. 在數組中增刪一個元素,所有元素都要往后往前移動,效率低下

知識腦圖

Java 集合系列(二)ArrayList詳解

以上所述是小編給大家介紹的Java集合系列ArrayList詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

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

AI

西华县| 巫山县| 页游| 边坝县| 达州市| 临城县| 军事| 徐州市| 平潭县| 时尚| 永城市| 庐江县| 连山| 安徽省| 秦皇岛市| 合江县| 南和县| 福建省| 遵义县| 麻阳| 山西省| 五莲县| 仁化县| 昭通市| 金秀| 晋城| 西丰县| 奈曼旗| 安达市| 灯塔市| 平乡县| 阿克陶县| 阿图什市| 靖边县| 阳江市| 上高县| 镶黄旗| 旺苍县| 黄山市| 志丹县| 平和县|