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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© L番茄X 中级黑马   /  2015-6-2 01:03  /  296 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;


class Student
{
  String name ;
   int age;
  public Student(String name , int age){
     this.name = name;
     this.age  = age;
  }
}
class Demo
{
   public static void main(String[] args)
{
    Collecion c = new ArrayList();
   Student stu = new Student("小米",4);
   Student stu1 = new Student("诺基亚",10);
   Student stu2 = new Student ("HTC",6);
    c.add(stu);
    c.add(stu1);
    c.add(stu2);
   System.out.println(c.size());
    //遍历得出每一个元素.
     Iterator it = c.iterator();
   while(it.hasNext()){
      Student s = (Student)it.next;
//toString方法获取每一个学生对象.
   System.out.println(s.name+","+s.age);
   }
}
}

4 个回复

倒序浏览
有一个错误:it.next()
回复 使用道具 举报
然后呢、、?
回复 使用道具 举报 1 0
支持一下
回复 使用道具 举报
不知道说什么
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马