ListIterator
代码比较少:
public interface ListIteratorextends Iterator { boolean hasNext(); E next(); boolean hasPrevious(); E previous(); int nextIndex(); int previousIndex(); void remove(); void set(E var1); void add(E var1);}复制代码
-
继承
-
定义新的抽象函数。感觉这些函数以及ListIterator中的“List”都是为了在
List
中使用