黑马程序员技术交流社区

标题: ArrayList存储自定义对象并遍历 [打印本页]

作者: abc1190@126.com    时间: 2015-6-2 00:13
标题: ArrayList存储自定义对象并遍历
public class ArrayListDemo2 {
        public static void main(String[] args) {
                ArrayList array = new ArrayList();

                Student s1 = new Student("乔峰", 40);
                Student s2 = new Student("虚竹", 36);
                Student s3 = new Student("段誉", 28);

                array.add(s1);
                array.add(s2);
                array.add(s3);

                Iterator it = array.iterator();
                while (it.hasNext()) {
                        Student s = (Student) it.next();
                        System.out.println(s.getName() + "***" + s.getAge());
                }

                System.out.println("-------------");

                for (int x = 0; x < array.size(); x++) {
                        Student s = (Student) array.get(x);
                        System.out.println(s.getName() + "***" + s.getAge());
                }
        }
}

作者: 微凉的暮色    时间: 2015-6-2 00:30
不错(⊙o⊙)哦
作者: 夏尔    时间: 2015-6-2 07:50
难怪段誉最帅^ _ ^
作者: 银哥    时间: 2015-6-2 22:10
刚学习的这个
作者: liuning    时间: 2015-6-3 08:35
难怪乔峰能到老大
作者: tougboy    时间: 2015-6-3 09:45
路过  学习
作者: 张海旭    时间: 2015-6-3 22:49
顶顶顶:victory:




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