collection提供的方法
时间: 2024-01-13 09:04:37 浏览: 52
Collection接口中的常用方法
Collection是Java中的一个接口,它是所有集合类的父接口,提供了一些通用的方法,如下:
1. int size():返回集合中元素的数量。
2. boolean isEmpty():判断集合是否为空。
3. boolean contains(Object o):判断集合中是否包含指定的元素。
4. Iterator<E> iterator():返回一个迭代器,用于遍历集合中的元素。
5. Object[] toArray():将集合中的元素转换为一个数组。
6. boolean add(E e):向集合中添加一个元素。
7. boolean remove(Object o):从集合中移除指定的元素。
8. boolean containsAll(Collection<?> c):判断集合是否包含指定集合中的所有元素。
9. boolean addAll(Collection<? extends E> c):将指定集合中的所有元素添加到集合中。
10. boolean removeAll(Collection<?> c):从集合中移除指定集合中的所有元素。
11. boolean retainAll(Collection<?> c):保留集合中与指定集合相同的元素,移除其他元素。
12. void clear():清空集合中的所有元素。
阅读全文