Java集合接口Collection

public interface Collection extends Iterable
Collection继承了接口Iterable
具有方法:
int size();
boolean isEmpty();
boolean contains(Object o);
Iterator iterator();
Object[] toArray();
T[] toArray(T[] a);
boolean add(E e);
boolean remove(Object o);
boolean containsAll(Collection c);
boolean addAll(Collection c);
boolean removeAll(Collection c);
void clear();
接口List和Set都继承了接口Collection,所有Set和List都具有上述方法,另外List接口具有其他一些方法。

你可能感兴趣的:(Java集合接口Collection)