java中list的源码
时间: 2023-11-25 17:05:29 浏览: 69
Rectangle List java 源码
List接口的源代码可以在Java SE API文档中找到。以下是Java 8版本的List接口源代码:
```java
public interface List<E> extends Collection<E> {
//查询操作
int size();
boolean isEmpty();
boolean contains(Object o);
Iterator<E> iterator();
Object[] toArray();
<T> T[] toArray(T[] a);
//修改操作
boolean add(E e);
boolean remove(Object o);
//批量操作
boolean containsAll(Collection<?> c);
boolean addAll(Collection<? extends E> c);
boolean addAll(int index, Collection<? extends E> c);
boolean removeAll(Collection<?> c);
boolean retainAll(Collection<?> c);
void clear();
//比较和哈希
boolean equals(Object o);
int hashCode();
//位置访问操作
E get(int index);
E set(int index, E element);
void add(int index, E element);
E remove(int index);
//搜索操作
int indexOf(Object o);
int lastIndexOf(Object o);
//列表迭代器
ListIterator<E> listIterator();
ListIterator<E> listIterator(int index);
//子列表
List<E> subList(int fromIndex, int toIndex);
}
```
List接口扩展了Collection接口,并定义了一组操作列表元素的方法。它包括查询操作(如size()、contains()、get()等)、修改操作(如add()、set()、remove()等)、批量操作、位置访问操作、搜索操作和列表迭代器。除此之外,还有一个子列表方法,可以返回一个子列表,表示原列表中的一段连续元素。
阅读全文