添加
boolean add(Object e){}
boolean addAll(Collection c)
boolean containsAll(Collection c)
boolean removeAll(Collection c)
boolean retainAll(Collection c):A集合对象.retainAll(B集合对象)
/**获取交集的元素,将交集的元素保存在A集合中,返回值的意思:
A集合前后元素是否发生变化,如果没有变化,则返回false,如果有变化,则返回true
*/
删除
boolean remove(Object e)
void clear()
判断
boolean contains(Object e)
boolean isEmpty()
获取
int size()
Iterator iterator()
Object[] toArray()
Collection的功能
最新推荐文章于 2021-10-18 11:15:38 发布