成员方法
boolean add(E e) 将元素添加到集合
boolean remove(Object o) 删除指定的元素,删除成功返回true
void clear() 清空集合中的所有元素
boolean contains(Object o) 判断集合中是不是包含这个对象,如果包含返回true
boolean isEmpty() 判断集合中有没有元素,如果没有返回true
int size() 返回集合中元素个数
所以的All方法
boolean addAll(Collection c) 将一个集合存储到另一个集合
boolean removeAll(Collection c) 移除,两个集合中相同的元素
boolean containsAll(Collection c) 判断一个集合中,是否包含另一个集合,完全包含返回true
boolean retainAll(Collection c) 获取两个集合交集,调用者集合元素没变过就返回false
|
|