如何利用特定类的数组?

时间:2013-07-26 23:21:21

标签: arrays class file-upload

我正在尝试将包含文件中几个人的名字和姓氏的文件输入到java程序中。我有一个People类,它有第一个和最后一个名字的两个字符串,以及访问信息的访问器和变换器。在我的main方法中,我有一个while循环,逐行引入每个人,直到文件结束。假设通过构造函数为每一行创建一个Person的新实例,并复制到该数组。当while循环结束后打印出数组的内容时,似乎数组中填充了文件中最后一个人的信息。但是,如果我注释掉String [] values = line.split(“\ t”);和Person child = new Person(values [0],values [1]);行和使用双维数组来保存文件中所有信息的副本,然后它工作正常。是否有一些我做错的事情阻止我保留People数组中文件中包含的所有个人姓名的副本?

public class Person
{
protected static String first;
protected static String last;
private static int id;

public Person(String l, String f)
{
    last = l;
    first = f;

} // end of constructor

public String getFirst()
{
    return first;
} // end of getFirst method

public static String getLast()
{
    return last;
} // end of getLast method

public static int getID()
{
    return id;
} // end of getLast method

public static void setFirst(String name)
{
    first = name;
} // end of setFirst method 

public static void setLast(String name)
{
    last = name;
} // end of setLast method

public static void setID(int num)
{
    id = num;
} // end of setLast method 

} // end of Person class






public class Driver 
{

public static void main(String arg[])
{

    Person[] temp = new Person[10]; 

    try 
    {   
        BufferedReader br = new BufferedReader(new FileReader(arg[1]));
        String line = null;
        int counter = 0;

        while ((line = br.readLine()) != null)
        {
            String[] values = line.split("\t");

            Person child = new Person(values[0], values[1]);

            temp[counter] = child;

            System.out.println("Index " + counter + ": Last: " + child.getLast() + " First: " + child.getFirst());
            System.out.println("Index " + counter + ": Last: " + temp[counter].getLast() + " First: " + temp[counter].getFirst() + "\n");

            counter++;              
        }

        br.close();

        } 

        catch(Exception e)
        {
            System.out.println("Could not find file");
        }

        for(int row = 0; row < 7; row++)
        {
            System.out.print("Row: " + row + " Last: " + temp[row].getLast() + " First: " + temp[row].getFirst() + "\n");
        }
}
} // end of Driver class

1 个答案:

答案 0 :(得分:0)

类Person中的字段不应该是静态的,静态字段意味着共享该类的所有实例的值,这意味着所有10个实例Person具有相同的“first”,“last”和“id”值。并且您还需要将Person的方法更改为非静态方法,因为静态方法无法访问静态字段。