黑马程序员技术交流社区

标题: foreach循环的嵌套方法 [打印本页]

作者: qiemo0709    时间: 2016-3-31 23:17
标题: foreach循环的嵌套方法
  1. ArrayList<ArrayList<Student>> list = new ArrayList<>();
  2.                 ArrayList<Student> first = new ArrayList<>();
  3.                 first.add(new Student("张三",23));
  4.                 first.add(new Student("里三",77));
  5.                 first.add(new Student("特有",34));
  6.                 first.add(new Student("低非",25));
  7.                
  8.                 ArrayList<Student> second = new  ArrayList<>();
  9.                 second.add(new Student("发个",53));
  10.                 second.add(new Student("发个",53));
  11.                 second.add(new Student("发个",53));
  12.                 second.add(new Student("发个",53));
  13.                
  14.                 list.add(first);
  15.                 list.add(second);
  16.                
  17.                 for(ArrayList<Student> a : list){
  18.                         for(Person p : a){
  19.                                 System.out.println(p);
  20.                         }
  21.                 }
复制代码





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