Collection中常见的方法:
1.添加
boolean add(Object obj);//向集合中添加元素
boolean addAll(Collection coll);//将另外集合中的元素添加至该集合
2.删除
boolean remove(Object obj);//将集合中某元素删除
boolean removeAll(Collection coll);//删除该集合中存在的与另外集合重部分的元素
void clear();//删除集合中所有元素
3.判断
boolean contains(Object obj);//判断集合中是否包含该元素
boolean containsAll(Collection coll);//判断集合中是否包含另外集合中的所有元素
boolean isEmpty();//判断集合是否为空
4.获取
int size();//获取集合的大小
Iterator iterator();//取出元素的方式:迭代器
5.其它
boolean retainAll(Collection coll);//取交集
Object[] toArray();//将集合转成数组 |
|