黑马程序员技术交流社区

标题: 迭代器的使用 [打印本页]

作者: 至尊宝的温柔    时间: 2015-11-7 12:29
标题: 迭代器的使用
  1. package com.heima;

  2. import java.util.ArrayList;
  3. import java.util.Collection;
  4. import java.util.Iterator;

  5. @SuppressWarnings({ "rawtypes", "unused" })
  6. public class De_Dedaiqi {
  7.         @SuppressWarnings("unchecked")
  8.         public static void main(String[] args){
  9.                 Collection c = new ArrayList<>();
  10.             c.add(new Student("zhangsan",23));   //Object obj = new Student();
  11.                 c.add(new Student("lisi",24));
  12.                 c.add(new Student("wangwu",25));
  13.                 Iterator it = c.iterator();
  14.                
  15.                 while(it.hasNext()){
  16.                         Student s = (Student)it.next();
  17.                        
  18.                         System.out.println(s.getName() +  s.getAge());
  19.                 }
  20.                
  21.                
  22.         }
  23. }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2