【集合】Collection
Collection是一个接口,其在java.util.Collection中定义。
public interface Collection<E> extends Iterable<E>
(1)指定参数增加1个元素
boolean add(E e);
(2)参数为1个集合,添加集合参数内包含的所有内容
boolean addAll(Collection<? extends E> c);
(1)删除指定的单个元素
boolean remove(Object o);
(2)参数为1个集合,删除集合参数内包含的所有元素
boolean removeAll(Collection<?> c);
(3)与removeAll方法相反。参数为1个集合,删除不存在于集合参数内的其他元素
boolean retainAll(Collection<?> c);
(4)根据过滤器删除
boolean removeIf(Predicate<? super E> filter)
(5)清空集合
void clear();
(1)参数1个元素,判断指定元素是否在集合中是否存在。返回boolean类型。
boolean contains(Object o);
(2)参数1个集合,判断 参数集合 的内容 在集合中是否存在。返回boolean类型。
boolean containsAll(Collection<?> c);
(1)获取集合的迭代器
Iterator<E> iterator();
(1)获取集合大小。如:集合clear()后,其大小是0
int size();
(2)判断集合是否为空,返回boolean类型。
boolean isEmpty();
(1)把集合转化成一个数组副本,返回
注(具体在后续各结合类实现中):
Object[] toArray();
(2)把集合中的元素存入参数指定的数组,返回
<T> T[] toArray(T[] a);
【重要!!!!】:
String[] y = x.toArray(new String[0]);
如:如下将list转换为数组时最佳SIZE (A)
List
list.add("1");
list.add("2");
String[] array = list.toArray(new String[SIZE]);
A、0 B、1 C、2 D、3