2 常用API
public Iterator iterator()获取Collection集合对应的迭代器,用来遍历集合中的元素
public boolean hasNext()如果任有元素可以迭代,则返回true,否则返回false
public E next()返回迭代的下一个元素
3 使用
public class Test { public static void main(String[] args) {
Collection<String> coll = new ArrayList<String>();
coll.add("A");
coll.add("B");
coll.add("C");
coll.add("D");