AbstractList源码解析
来源:芥末无疆sss     阅读:708
微上宝科技
发布于 2018-10-06 22:59
查看主页


它实现了 List 的少量位置相关操作(比方 get,set,add,remove),是第一个实现随机访问方法的集合类,但不支持增加和替换

AbstractCollection笼统类中要求子类必需实现两个方法

假如子类想要能够修改元素,还需要重写 add(), set(), remove() 方法,否则会报抛UnsupportedOperationException

1 实现的方法

1.1 默认不支持的 add(), set(),remove()




1.2 indexOf(Object) 获取指定对象 初次出现 的索引

1.3 lastIndexOf(Object)

获取指定对象最后一次出现的位置



L203 : 获取 ListIterator,此时游标在最后一位
之后向前遍历

1.4 clear(), removeRange(int, int),

一律/范围 删除元素:


传入由子类实现的 size()
获取 ListIterator 来进行迭代删除

1.5 addAll

2 两种内部迭代器

与其余集合实现类不同,AbstractList 内部已经提供了 Iterator, ListIterator 迭代器的实现类,分别为 Itr, ListItr

2.1 Itr 源码分析

private class Itr implements Iterator<E> {    //游标    int cursor = 0;    //上一次迭代到的元素的位置,每次使用完就会置为 -1    int lastRet = -1;    //用来判断能否发生并发操作的标示,假如这两个值不一致,就会报错    int expectedModCount = modCount;    public boolean hasNext() {        return cursor != size();    }    public E next() {        //时刻检查能否有并发修改操作        checkForComodification();        try {            int i = cursor;            //调用 子类实现的 get() 方法获取元素            E next = get(i);            //有迭代操作后就会记录上次迭代的位置            lastRet = i;            cursor = i + 1;            return next;        } catch (IndexOutOfBoundsException e) {            checkForComodification();            throw new NoSuchElementException();        }    }    public void remove() {        if (lastRet < 0)            throw new IllegalStateException();        checkForComodification();        try {            //调用需要子类实现的 remove()方法            AbstractList.this.remove(lastRet);            if (lastRet < cursor)                cursor--;            //删除后 上次迭代的记录就会置为 -1            lastRet = -1;            expectedModCount = modCount;        } catch (IndexOutOfBoundsException e) {            throw new ConcurrentModificationException();        }    }    //检查能否有并发修改    final void checkForComodification() {        if (modCount != expectedModCount)            throw new ConcurrentModificationException();    }}

可以看到 Itr 只是简单实现了 Iterator 的 next, remove 方法

2.2 ListItr 源码分析

//ListItr 是 Itr 的加强版private class ListItr extends Itr implements ListIterator<E> {    //多了个指定游标位置的构造参数,怎样都不检查能否越界!    ListItr(int index) {        cursor = index;    }    //除了一开始都有前面元素    public boolean hasPrevious() {        return cursor != 0;    }    public E previous() {        checkForComodification();        try {            //获取游标前面一位元素            int i = cursor - 1;            E previous = get(i);            //为什么上次操作的位置是 游标当前位置呢?哦,看错了,游标也前移了            lastRet = cursor = i;            return previous;        } catch (IndexOutOfBoundsException e) {            checkForComodification();            throw new NoSuchElementException();        }    }    //下一个元素的位置就是当前游标所在位置    public int nextIndex() {        return cursor;    }    public int previousIndex() {        return cursor-1;    }    public void set(E e) {        if (lastRet < 0)            throw new IllegalStateException();        checkForComodification();        try {            //子类得检查 lasRet 能否为 -1            AbstractList.this.set(lastRet, e);            expectedModCount = modCount;        } catch (IndexOutOfBoundsException ex) {            throw new ConcurrentModificationException();        }    }    public void add(E e) {        checkForComodification();        try {            int i = cursor;            AbstractList.this.add(i, e);            //又置为 -1 了            lastRet = -1;            cursor = i + 1;            expectedModCount = modCount;        } catch (IndexOutOfBoundsException ex) {            throw new ConcurrentModificationException();        }    }}

在 Itr 基础上多了 向前 和 set 操作

3 两种内部类


在 subList 方法中我们发现在切分 子序列时会分为两类,RandomAccess or not

3.1 RandomAccess


一个空接口,用来标识某个类能否支持 随机访问
一个支持随机访问的类显著可以使用更加高效的算法

通常在操作一个 List 对象时,通常会判断能否支持 随机访问,也就是能否为 RandomAccess 的实例,从而使用不同的算法

比方遍历,实现了 RandomAccess 的集合使用 get():

for (int i=0, n=list.size(); i < n; i++)          list.get(i);

比用迭代器更快

  for (Iterator i=list.iterator(); i.hasNext(); )      i.next();

实现了 RandomAccess 接口的类有:
ArrayList, AttributeList, CopyOnWriteArrayList, Vector, Stack 等。

3 SubList 源码分析

// AbstractList 的子类,表示父 List 的一部分class SubList<E> extends AbstractList<E> {    private final AbstractList<E> l;    private final int offset;    private int size;//构造参数://list :父 List//fromIndex : 从父 List 中开始的位置//toIndex : 在父 List 中哪里结束SubList(AbstractList<E> list, int fromIndex, int toIndex) {    if (fromIndex < 0)        throw new IndexOutOfBoundsException("fromIndex = " + fromIndex);    if (toIndex > list.size())        throw new IndexOutOfBoundsException("toIndex = " + toIndex);    if (fromIndex > toIndex)        throw new IllegalArgumentException("fromIndex(" + fromIndex +                                           ") > toIndex(" + toIndex + ")");    l = list;    offset = fromIndex;    size = toIndex - fromIndex;    //和父类使用同一个 modCount    this.modCount = l.modCount;}//使用父类的 set()public E set(int index, E element) {    rangeCheck(index);    checkForComodification();    return l.set(index+offset, element);}//使用父类的 get()public E get(int index) {    rangeCheck(index);    checkForComodification();    return l.get(index+offset);}//子 List 的大小public int size() {    checkForComodification();    return size;}public void add(int index, E element) {    rangeCheckForAdd(index);    checkForComodification();    //根据子 List 开始的位置,加上偏移量,直接在父 List 上进行增加    l.add(index+offset, element);    this.modCount = l.modCount;    size++;}public E remove(int index) {    rangeCheck(index);    checkForComodification();    //根据子 List 开始的位置,加上偏移量,直接在父 List 上进行删除    E result = l.remove(index+offset);    this.modCount = l.modCount;    size--;    return result;}protected void removeRange(int fromIndex, int toIndex) {    checkForComodification();    //调用父类的 局部删除    l.removeRange(fromIndex+offset, toIndex+offset);    this.modCount = l.modCount;    size -= (toIndex-fromIndex);}public boolean addAll(Collection<? extends E> c) {    return addAll(size, c);}public boolean addAll(int index, Collection<? extends E> c) {    rangeCheckForAdd(index);    int cSize = c.size();    if (cSize==0)        return false;    checkForComodification();    //还是使用的父类 addAll()    l.addAll(offset+index, c);    this.modCount = l.modCount;    size += cSize;    return true;}public Iterator<E> iterator() {    return listIterator();}public ListIterator<E> listIterator(final int index) {    checkForComodification();    rangeCheckForAdd(index);    //创立一个 匿名内部 ListIterator,指向的还是 父类的 listIterator    return new ListIterator<E>() {        private final ListIterator<E> i = l.listIterator(index+offset);        public boolean hasNext() {            return nextIndex() < size;        }        public E next() {            if (hasNext())                return i.next();            else                throw new NoSuchElementException();        }        public boolean hasPrevious() {            return previousIndex() >= 0;        }        public E previous() {            if (hasPrevious())                return i.previous();            else                throw new NoSuchElementException();        }        public int nextIndex() {            return i.nextIndex() - offset;        }        public int previousIndex() {            return i.previousIndex() - offset;        }        public void remove() {            i.remove();            SubList.this.modCount = l.modCount;            size--;        }        public void set(E e) {            i.set(e);        }        public void add(E e) {            i.add(e);            SubList.this.modCount = l.modCount;            size++;        }    };}public List<E> subList(int fromIndex, int toIndex) {    return new SubList<>(this, fromIndex, toIndex);}private void rangeCheck(int index) {    if (index < 0 || index >= size)        throw new IndexOutOfBoundsException(outOfBoundsMsg(index));}private void rangeCheckForAdd(int index) {    if (index < 0 || index > size)        throw new IndexOutOfBoundsException(outOfBoundsMsg(index));}private String outOfBoundsMsg(int index) {    return "Index: "+index+", Size: "+size;}private void checkForComodification() {    if (this.modCount != l.modCount)        throw new ConcurrentModificationException();}}

总结

SubList 就是啃老族,尽管自立门户,等到要干活时,使用的都是父类的方法,父类的数据。
所以可以通过它来间接操作父 List

4 RandomAccessSubList 源码:

AbstractList 作为 List 家族的中坚力量

免责声明:本文为用户发表,不代表网站立场,仅供参考,不构成引导等用途。 系统环境 服务器应用
相关推荐
用nginx做SEO优化之网页启使用Gzip压缩设置缓存机制
哈希表(simple_hash_table)的实现
ubuntu 删除 波浪号结尾的文件
意外收获Gtihub上这套《Andorid开发从底层基础到架构成长笔记》,果然高手与菜鸟之间差距不止一点点!
程序员被裁后找了6份兼职,无法顾家,晒出收入后,网友:打工皇帝!
首页
搜索
订单
购物车
我的