Collection类
Collection集合常用方法:
boolean add(E e)
boolean remove(Object o)
boolean removeif(Object o)
void clear()
boolean contains(Object o)
boolean isEmpty()
int size()
Collection集合的遍历
Iterator:迭代器,集合的专用遍历方式
Iterator<E> iterator()
返回集合中的迭代器对象,该迭代器对象默认指向当前集合的0索引
Iterator中的常用方法
boolean hasNext()
:判断当前位置是否有元素可以被取出
E next()
:获取当前位置的元素,并将迭代器对象移向下一个索引位置