package test;
import java.util.ArrayList;
import com.heima.per.Person;
/**
* 在集合中嵌套小集合 for (元素数据类型 变量 : 数组或者集合)
*
* @author fenuang
*
*/
public class inout {
public static void main(String[] args) {
ArrayList<ArrayList<Person>> list = new ArrayList<>();
// 创建第一个集合
ArrayList<Person> first = new ArrayList<>();
first.add(new Person("苍井空", 25));
first.add(new Person("波多野结衣", 22));
first.add(new Person("小泽玛莉亚", 26));
// 创建第二个集合
ArrayList<Person> second = new ArrayList<>();
second.add(new Person("成龙", 50));
second.add(new Person("甄子丹", 30));
second.add(new Person("周星驰", 50));
second.add(new Person("叶问", 50));
// 把子集合添加到总集合
list.add(first);
list.add(second);
// 遍历并打印集合
for (ArrayList<Person> person : list) {
for (Person person2 : person) {
System.out.println(person2);
}
}
}
}
java ArrayList中嵌套小集合并打印
最新推荐文章于 2024-09-13 14:15:22 发布