黑马程序员技术交流社区
标题:
foreach循环的嵌套方法
[打印本页]
作者:
qiemo0709
时间:
2016-3-31 23:17
标题:
foreach循环的嵌套方法
ArrayList<ArrayList<Student>> list = new ArrayList<>();
ArrayList<Student> first = new ArrayList<>();
first.add(new Student("张三",23));
first.add(new Student("里三",77));
first.add(new Student("特有",34));
first.add(new Student("低非",25));
ArrayList<Student> second = new ArrayList<>();
second.add(new Student("发个",53));
second.add(new Student("发个",53));
second.add(new Student("发个",53));
second.add(new Student("发个",53));
list.add(first);
list.add(second);
for(ArrayList<Student> a : list){
for(Person p : a){
System.out.println(p);
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2