A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 至尊宝的温柔 中级黑马   /  2015-11-7 12:29  /  295 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  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. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马