類型:抽象類java
接口的繼承以及實現關係dom
典型方法實現解析this
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)); }
SubList