带All的功能演示
boolean addAll(Collection c)
boolean removeAll(Collection c)
boolean containsAll(Collection c)
boolean retainAll(Collection c)
A:迭代器概述
集合是用来存储元素,存储的元素需要查看,那么就需要迭代(遍历)
for(Iterator it = c.iterator();it.hasNext()