黑马程序员技术交流社区

标题: ListTest [打印本页]

作者: 陈冬雪    时间: 2015-8-6 23:06
标题: ListTest
  1. package cn.itcast_02;

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

  5. public class ListTest {
  6.         public static void main(String[] args) {
  7.                
  8.                 List list = new ArrayList();
  9.                
  10.                 Student s1 = new Student("顾里",18);
  11.                 Student s2 = new Student("林萧",18);
  12.                 Student s3 = new Student("南湘",18);
  13.                 Student s4 = new Student("唐宛如",18);
  14.                
  15.                 list.add(s1);
  16.                 list.add(s2);
  17.                 list.add(s3);
  18.                 list.add(s4);
  19.                
  20.                 //Iterator it = list.iterator();
  21.                 //while (it.hasNext()) {
  22.                 //        Student s = (Student) it.next();
  23.                 //        System.out.println(s.getName()+"---------"+s.getAge());
  24.                 //}
  25.                
  26.                 Iterator it = list.iterator();
  27.                 while (it.hasNext()) {
  28.                         Student s = (Student) it.next();
  29.                         System.out.println(s.getName()+"----"+s.getAge());
  30.                        
  31.                 }
  32.                
  33.                 for (int i = 0; i < list.size(); i++) {
  34.                         Student s = (Student) list.get(i);
  35.                         System.out.println(s.getName()+"********"+s.getAge());
  36.                 }
  37.                
  38.                 for (int i = 0; i < list.size(); i++) {
  39.                         Student s = (Student) list.get(i);
  40.                         System.out.println(s.getName()+s.getAge());
  41.                 }
  42.                
  43.         }
  44. }
复制代码

这是今天的




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