表示一组对象,它是集中,收集的意思,就是把一些数据收集起来
Collection接口的两个子接口:
Set中的数据没有顺序,不可重复。
List中的数据有顺序,可重复。
Collection接口中定义的方法:
boolean add(Object element);
boolean remove(Object element);
boolean contains(Object element);
int size();
boolean isEmpty();
void clear();
Iterator iterator();
boolean containsAll(Collection c);
boolean addAll(Collection c);
boolean removeAll(Collection c);
boolean retainAll(Collection c); //交集
Object[] toArray();
|
|