集合源碼分析[2]-AbstractList 源碼分析

AbstractList

  1. 類型:抽象類java

  2. 接口的繼承以及實現關係dom

    1. 繼承AbstractCollection
    2. 實現List接口

  1. 典型方法實現解析this

    1. public List<E> subList(int fromIndex, int toIndex)將集合從fromIndex到toIndex地方進行剪切
    public List<E> subList(int fromIndex, int toIndex) {
            return (this instanceof RandomAccess ?
                    new RandomAccessSubList<>(this, fromIndex, toIndex) :
                    new SubList<>(this, fromIndex, toIndex));
        }
    • 判斷是否有隨機訪問的接口若是有則牀架一個隨機訪問的List子集合,不然返回SubList
相關文章
相關標籤/搜索