1. 程式人生 > >AbstractList方法學習

AbstractList方法學習

nbsp 部分 this dex 方法 sss from strac abstract

public List<E> subList(int fromIndex, int toIndex) {
return (this instanceof RandomAccess ?
new RandomAccessSubList<>(this, fromIndex, toIndex) :
new SubList<>(this, fromIndex, toIndex));
}

註釋:用來返回list一部分的視圖.

AbstractList方法學習