boolean add(E e)添加元素
boolean remove(Object o)移除元素
void clear()清除所有元素
boolean contains(Object o)判断是否包含某个元素
boolean isEmpty()判断集合是否有元素
int size()获取集合众的元素个数
boolean addAll(Collection c)添加集合
boolean removeAll(Collection c)移除集合
boolean containsAll(Collection c)是否包含一个集合的所有元素
boolean retainAll(Collection c)两个集合的交集