Collection接口中定义的方法
int size():获取当前集合中的元素数量
boolean isEmpty():查看当前集合中是否包含元素
不包含返回true
检查当前集合是否为空集
boolean contains(Object o):
查看当前集合中是否包含给定的元素
void clear():清空集合
boolean add(E e):向集合中添加元素
当元素成功添加到集合中返回true
boolean remove(Object o):从集合中删除给定的元素
boolean addAll(Collection c):
将给定集合中的所有元素添加到当前集合
boolean removeAll(Collection c):
删除当前集合中与给定集合中相同的元素
Iterator iterator():
获取迭代 |
|