码迷,mamicode.com
首页 > 其他好文 > 详细

ArrlyList集合

时间:2015-05-13 12:16:11      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

public class Person
{
    private String name;//,sex;
    private int age;
    public Person(String name, int age)
    {
        super();
        this.name = name;
        this.age = age;
    }
    public String getName()
    {
        return name;
    }
    public void setName(String name)
    {
        this.name = name;
    }
    public int getAge()
    {
        return age;
    }
    public void setAge(int age)
    {
        this.age = age;
    }

    
}

定义一个Person类,包含姓名年龄性别身高体重等数据,并提供相应的get和set方法。

import java.util.ArrayList;
import java.util.Iterator;

public class Test
{
    
    public static void main(String[] args)
    {
        Person pA = new Person("A", 20);
        Person pB = new Person("B", 21);
        Person pC = new Person("C", 22);
        Person pD = new Person("D", 24);
        
        ArrayList<Person> al = new ArrayList<Person>();
        
        al.add(pA);
        al.add(pB);
        al.add(pC);
        al.add(pD);
        
        for (Iterator<Person> iterator = al.iterator(); iterator.hasNext();)  //迭代器
        {
            Person p = (Person) iterator.next(); //转换成person类
            
            System.out.println(p.getName()+"     "+p.getAge());
            
        }
    }
    
}

ArrlyList集合

标签:

原文地址:http://www.cnblogs.com/qq28902581/p/4499500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!