A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© ZhengJX 中级黑马   /  2015-10-10 22:45  /  241 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. package com.heima.zuoye;

  2. import java.util.ArrayList;

  3. import com.heima.bean.Person;

  4. public class Demo5_DoubleList {
  5.         public static void main(String[] args) {
  6.                 ArrayList<ArrayList<Person>> list = new ArrayList<>();
  7.                
  8.                 ArrayList<Person> first = new ArrayList<>();
  9.                 first.add(new Person("金洋", 23));
  10.                 first.add(new Person("文悦", 24));
  11.                
  12.                 ArrayList<Person> second = new ArrayList<>();
  13.                 second.add(new Person("呵呵", 11));
  14.                 second.add(new Person("哈哈", 10));
  15.                
  16.                 list.add(first);
  17.                 list.add(second);
  18.                
  19.                 for(ArrayList<Person> a:list) {
  20.                         for(Person p : a) {
  21.                                 System.out.println(p);
  22.                         }
  23.                 }
  24.         }
  25. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马