偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

Java|List.subList 踩坑小記

開(kāi)發(fā)
很久以前在使用 Java 的 List.subList 方法時(shí)踩過(guò)一個(gè)坑,當(dāng)時(shí)記了一條待辦,要寫(xiě)一寫(xiě)這事,今天完成它。

很久以前在使用 Java 的 List.subList 方法時(shí)踩過(guò)一個(gè)坑,當(dāng)時(shí)記了一條待辦,要寫(xiě)一寫(xiě)這事,今天完成它。

我們先來(lái)看一段代碼:

// 初始化 list 為 { 1, 2, 3, 4, 5 }
List<Integer> list = new ArrayList<>();
for (int i = 1; i <= 5; i++) {
    list.add(i);
}

// 取前 3 個(gè)元素作為 subList,操作 subList
List<Integer> subList = list.subList(0, 3);
subList.add(6);

System.out.println(list.size());

輸出是 5 還是 6?

沒(méi)踩過(guò)坑的我,會(huì)回答是 5,理由是:往一個(gè) List 里加元素,關(guān)其它 List 什么事?

而掉過(guò)坑的我,口中直呼 666。

好了不繞彎子,我們直接看下 List.subList 方法的注釋文檔:

/**
 * Returns a view of the portion of this list between the specified
 * <tt>fromIndex</tt>, inclusive, and <tt>toIndex</tt>, exclusive.  (If
 * <tt>fromIndex</tt> and <tt>toIndex</tt> are equal, the returned list is
 * empty.)  The returned list is backed by this list, so non-structural
 * changes in the returned list are reflected in this list, and vice-versa.
 * The returned list supports all of the optional list operations supported
 * by this list.<p>
 *
 * This method eliminates the need for explicit range operations (of
 * the sort that commonly exist for arrays).  Any operation that expects
 * a list can be used as a range operation by passing a subList view
 * instead of a whole list.  For example, the following idiom
 * removes a range of elements from a list:
 * <pre>{@code
 *      list.subList(from, to).clear();
 * }</pre>
 * Similar idioms may be constructed for <tt>indexOf</tt> and
 * <tt>lastIndexOf</tt>, and all of the algorithms in the
 * <tt>Collections</tt> class can be applied to a subList.<p>
 *
 * The semantics of the list returned by this method become undefined if
 * the backing list (i.e., this list) is <i>structurally modified</i> in
 * any way other than via the returned list.  (Structural modifications are
 * those that change the size of this list, or otherwise perturb it in such
 * a fashion that iterations in progress may yield incorrect results.)
 *
 * @param fromIndex low endpoint (inclusive) of the subList
 * @param toIndex high endpoint (exclusive) of the subList
 * @return a view of the specified range within this list
 * @throws IndexOutOfBoundsException for an illegal endpoint index value
 *         (<tt>fromIndex < 0 || toIndex > size ||
 *         fromIndex > toIndex</tt>)
 */
List<E> subList(int fromIndex, int toIndex);

這里面有幾個(gè)要點(diǎn):

subList 返回的是原 List 的一個(gè) 視圖,而不是一個(gè)新的 List,所以對(duì) subList 的操作會(huì)反映到原 List 上,反之亦然;

如果原 List 在 subList 操作期間發(fā)生了結(jié)構(gòu)修改,那么 subList 的行為就是未定義的(實(shí)際表現(xiàn)為拋異常)。

第一點(diǎn)好理解,看到「視圖」這個(gè)詞相信大家就都能理解了。我們甚至可以結(jié)合 ArrayList 里的 SubList 子類(lèi)源碼進(jìn)一步看下:

private class SubList extends AbstractList<E> implements RandomAccess {
    private final AbstractList<E> parent;
    // ...

    SubList(AbstractList<E> parent,
            int offset, int fromIndex, int toIndex) {
        this.parent = parent;
        // ...
        this.modCount = ArrayList.this.modCount;
    }

    public E set(int index, E e) {
        // ...
        checkForComodification();
        // ...
        ArrayList.this.elementData[offset + index] = e;
        // ...
    }

    public E get(int index) {
        // ...
        checkForComodification();
        return ArrayList.this.elementData(offset + index);
    }

    public void add(int index, E e) {
        // ...
        checkForComodification();
        parent.add(parentOffset + index, e);
        this.modCount = parent.modCount;
        // ...
    }

    public E remove(int index) {
        // ...
        checkForComodification();
        E result = parent.remove(parentOffset + index);
        this.modCount = parent.modCount;
        // ...
    }

    private void checkForComodification() {
        if (ArrayList.this.modCount != this.modCount)
            throw new ConcurrentModificationException();
    }

    // ...
}

可以看到幾乎所有的讀寫(xiě)操作都是映射到 ArrayList.this、或者 parent(即原 List)上的,包括 size、add、remove、set、get、removeRange、addAll 等等。

第二點(diǎn),我們?cè)谖氖椎氖纠a里加上兩句代碼看現(xiàn)象:

list.add(0, 0);
System.out.println(subList);

System.out.println 會(huì)拋出異常 java.util.ConcurrentModificationException。

我們還可以試下,在聲明 subList 后,如果對(duì)原 List 進(jìn)行元素增刪操作,然后再讀寫(xiě) subList,基本都會(huì)拋出此異常。

因?yàn)?subList 里的所有讀寫(xiě)操作里都調(diào)用了 checkForComodification(),這個(gè)方法里檢驗(yàn)了 subList 和 List 的 modCount 字段值是否相等,如果不相等則拋出異常。

modCount 字段定義在 AbstractList 中,記錄所屬 List 發(fā)生 結(jié)構(gòu)修改 的次數(shù)。結(jié)構(gòu)修改 包括修改 List 大?。ㄈ?add、remove 等)、或者會(huì)使正在進(jìn)行的迭代器操作出錯(cuò)的修改(如 sort、replaceAll 等)。

好了小結(jié)一下,這其實(shí)不算是坑,只是 不應(yīng)該僅憑印象和猜測(cè),就開(kāi)始使用一個(gè)方法,至少花一分鐘認(rèn)真讀完它的官方注釋文檔。

責(zé)任編輯:趙寧寧 來(lái)源: 悶騷的程序員
相關(guān)推薦

2021-06-26 15:31:25

Dubbo應(yīng)用級(jí)服務(wù)

2024-04-02 08:41:10

ArrayListSubList場(chǎng)景

2023-01-18 23:20:25

編程開(kāi)發(fā)

2020-09-15 08:46:26

Kubernetes探針服務(wù)端

2023-02-20 08:11:04

2025-10-27 01:11:00

2021-10-28 19:10:02

Go語(yǔ)言編碼

2017-05-05 08:12:51

Spark共享變量

2015-03-24 16:29:55

默認(rèn)線程池java

2021-09-03 11:15:18

場(chǎng)景sql配置

2024-04-10 08:39:56

BigDecimal浮點(diǎn)數(shù)二進(jìn)制

2024-04-01 08:05:27

Go開(kāi)發(fā)Java

2017-07-17 15:46:20

Oracle并行機(jī)制

2021-05-27 22:46:00

Nacos Clien版本Nacos

2021-10-15 06:49:37

MySQL

2022-11-18 07:34:12

Docker項(xiàng)目目錄

2024-10-09 08:09:11

2025-05-27 01:55:00

MySQL數(shù)據(jù)庫(kù)工具鏈

2024-03-13 13:10:48

JavaInteger緩存

2023-06-30 08:10:14

JavaBigDecimal
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)