import java.util.ArrayList;
import com.heima.bean.person;
/*案列演示:
学科一个大集合
一个学科里面若干个班级(一个班级是一个小集合)*/
public class Demo4_ArrayList {
public static void main(String[] args) {
ArrayList<ArrayList<person>> list=new ArrayList<>();
ArrayList<person> first=new ArrayList<>();//创建第一个班级
first.add(new person("小明",21));
first.add(new person("小名",22));
first.add(new person("小命",23));
ArrayList<person> second=new ArrayList<>();//创建第二个班级
second.add(new person("小明2",21));
second.add(new person("小名2",22));
second.add(new person("小命2",23));
list.add(first);
list.add(second);
// 遍历学科集合
for (ArrayList<person> ap : list) {
for (person p : ap) {
System.out.println(p);
}
}
}
}