使用数组多次添加多个类型

时间:2013-05-15 18:18:24

标签: java arrays

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package demo;

/**
 *
 * @author mikel
 */
public class Individual {

    private String name;
    private String surname;
    private String phone;
    private String mail;
    private String afm;
    private int icode;
    private int year;
    private int month;
    private int day;
    private int grade;
    private int i=1;


    /*----------get-----------*/
        public String getName()
        {
            return this.name;
        }

        public String getSurname()
        {
            return this.surname;
        }

        public String getPhone()
        {
            return this.phone;
        }
        public String getMail()
        {
            return this.mail;
        }
        public String getAfm()
        {
            return this.afm;
        }
        public int getiCode()
        {
            return this.icode;
        }
        public int getYear()
        {
            return this.year;
        }
        public int getMonth()
        {
            return this.month;
        }
        public int getDay()
        {
            return this.day;
        }
        public int getGrade()
        {
            return this.grade;
        }
    /*----------set-----------*/    

        public void setName(String name)
        {
            this.name = name;
        }

        public void setSurname(String surname)
        {
            this.surname = surname;
        }

        public void setPhone(String phone)
        {
            this.phone = phone;
        }

        public void setAfm(String afm)
        {
            this.afm = afm;
        }

        public void setiCode(int icode)
        {
            this.icode = icode;
        }

        public void setYear(int year)
        {
            this.year = year;
        }

        public void setMonth(int month)
        {
            this.month = month;
        }

        public void setDay(int day)
        {
            this.day = day;
        }

        public void setGrade(int grade)
        {
            this.grade = grade;
        }

我现在正在学习Java,我有一个问题,我需要在一个数组中为多个人添加信息,但是在这个数组中,我希望有多种类型的信息。 我的意思是:

John Smith 964564 email@gg.com 564789

Mikel Nan  589456 email@gg.com 123123

所以结果看起来像一个数组。

我的项目要求程序能够在屏幕上打印我添加的所有人名和信息列表。

使用此作为解决方案,我在其他答案中看到,我没有得到预期的结果。

Object[] obj = new Object[]{name, surname, phone, mail, afm};

此外,我想在此列表中添加多个人,因此我必须制作更多对象或者还有其他方式?

提前感谢您的时间! 对不起,如果我的解释不那么清楚。

3 个答案:

答案 0 :(得分:3)

@Mikel最好为此目的使用Individual类对象的ArrayList。

然后在列表上使用每个循环或迭代器,并显示ArrayList中的每个对象。

Individual

中放置这样的构造函数
public Individual(String name, String surname, String phone,
    String mail, String afm, int icode, int year, int month, int day,
    int grade) {


    this.name = name;
    this.surname = surname;
    this.phone = phone;
    this.mail = mail;
    this.afm = afm;
    this.icode = icode;
    this.year = year;
    this.month = month;
    this.day = day;
    this.grade = grade;

}

使用此功能添加每个人信息。

声明ArrayList喜欢thiis

ArrayList<Individual> individualInfo = new ArrayList<Individual>();

每当您想要添加新人信息时,您都可以添加这些

individualInfo.add(new Individual(name, surname, phone, mail, afm, icode, year, month, day, grade));

当你想要像这样迭代每个循环的individualInfo ArrayList时使用。

  for (Individual individual: individualInfo) {

      //individual.getName();
      // Like these you can get the properties of individual objects.
  }

您也可以将Iterator用于此目的。

答案 1 :(得分:0)

最好使用List然后你可以简单地添加使用方法.add(new Individual()

答案 2 :(得分:0)

你需要一个构造函数:

Individual []individuals = new Individual[] {
    new Individual(name1, surname1, phone1, mail1, afm1),
    new Individual(name2, surname2, phone2, mail2, afm2),
    new Individual(name3, surname3, phone3, mail3, afm3)
};

将其添加到列表中:

ArrayList<Individual> listIndividuals = new ArrayList<Individual>(
    Arrays.asList(individuals)
    );