本帖最后由 w270307032 于 2013-6-7 11:16 编辑
- Collection<Integer> books = new HashSet<Integer>();
- books.add(4); /*
- 集合能装的都是对象这里已经自动装箱了 */
- books.add(5);
- books.add(10);
- Iterator<Integer> it = books.iterator();
- while(it.hasNext()) {
- Integer s =(Integer)it.next();
- System.out.println(s);
复制代码 迭代是取出集合中元素的一种方式。
因为Collection中有iterator方法,所以每一个子类集合对象都具备迭代器.所以只要是Collection类中的子类,都能用iterator方法取出元素 |