亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Java中ArrayList和SubList的坑怎么解決

發布時間:2022-05-26 14:11:27 來源:億速云 閱讀:249 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“Java中ArrayList和SubList的坑怎么解決”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Java中ArrayList和SubList的坑怎么解決”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

代碼復現

不要,思考一下會打印出什么?

        List<String> list1 = new ArrayList<>(Arrays.asList("username", "passwd"));
        List<String> list2 = list1.subList(0, 2);
        list2.add("email");
        System.out.println(list1);
        System.out.println(list2);

執行結果:

Java中ArrayList和SubList的坑怎么解決

你是否感覺疑惑?在想為什么在list2添加的在list1也添加是吧?

源碼解析

subList接口

List<E> subList(int fromIndex, int toIndex);

我們使用的是ArrayList,所以是選擇ArrayList即可

    public List<E> subList(int fromIndex, int toIndex) {
    subListRangeCheck(fromIndex, toIndex, size);
    return new SubList(this, 0, fromIndex, toIndex);
}

fromIndex是從List元素開始索引,toIndex是List元素結束索引,subListRangeCheck方法是檢查是否在允許范圍之內。

    static void subListRangeCheck(int fromIndex, int toIndex, int size) {
    	//開始索引小于0
        if (fromIndex < 0)
            throw new IndexOutOfBoundsException("fromIndex = " + fromIndex);
            //結束索引大于容量
        if (toIndex > size)
            throw new IndexOutOfBoundsException("toIndex = " + toIndex);
            //開始索引大于結束索引
        if (fromIndex > toIndex)
            throw new IllegalArgumentException("fromIndex(" + fromIndex +
                                               ") > toIndex(" + toIndex + ")");

重頭戲在new SubList(this, 0, fromIndex, toIndex);這里,看看下面的SubList就會知道,this關鍵字將當前對象的引用也就是list1傳入了SubList,把傳入的list1變成parent賦值給SubList內部成員,然后又將這個構造生成的賦值給list2,也就是說list1和list2是引用了同一個對象,指向的是同一list。

        SubList(AbstractList<E> parent,
                int offset, int fromIndex, int toIndex) {
             //問題就出現在這里
            this.parent = parent;
            this.parentOffset = fromIndex;
            this.offset = offset + fromIndex;
            this.size = toIndex - fromIndex;
            this.modCount = ArrayList.this.modCount;
        }

再來看看list2.add的源碼,將元素直接添加在list1和list2共同的list引用對象上,這就是為什么list2添加了,list1也添加了。

        public void add(int index, E e) {
            rangeCheckForAdd(index);
            checkForComodification();
            //將元素直接添加在list1和list2共同的list引用對象上
            parent.add(parentOffset + index, e);
            this.modCount = parent.modCount;
            this.size++;
        }

附:ArrayList的subList簡單介紹和使用

subList(int fromIndex, int toIndex);

它返回原來list的從[fromIndex, toIndex)之間這一部分其實就是list的子列表(注意:fromIndex是 [ 說明包括其本身,toIndex是 )說明不包括其本身)。

這個子列表的本質其實還是原列表的一部分;也就是說,修改這個子列表,將導致原列表也發生改變。

舉例說明

list中包含1,2,3,4,5,6一共6個元素,list.subList(1,3)返回的是2,3(list以0為開始)

還有一個經常使用的list.subList(1,list.size)

list中包含1,2,3,4,5,6一共6個元素,list.subList(1,list.size)返回的是2,3,4,5,6(list以0為開始)

讀到這里,這篇“Java中ArrayList和SubList的坑怎么解決”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

萨迦县| 呼和浩特市| 那曲县| 北辰区| 岐山县| 原阳县| 北票市| 喜德县| 普陀区| 康定县| 平阳县| 福泉市| 祁门县| 浦县| 肃南| 海城市| 信阳市| 小金县| 靖远县| 东乌珠穆沁旗| 年辖:市辖区| 山东省| 甘洛县| 古丈县| 桓台县| 汤原县| 云林县| 吉木萨尔县| 那曲县| 汝南县| 南京市| 新平| 那坡县| 友谊县| 肃南| 青龙| 夏津县| 海原县| 靖安县| 札达县| 磴口县|