用Iterator实现遍历集合
使用Collection类的Iterator,可以方便的遍历Vector, ArrayList, LinkedList等集合元素,避免通过get()方法遍历时,针对每一种对象单独进行编码。示例: Collection coll = new Vector(); //LinkedList(); //ArrayList(); coll.add("Tody"); coll.add("is"); coll.add("Sunday.");