gpt4 book ai didi

java - 编写一个将对象添加到数组的方法

转载 作者:行者123 更新时间:2023-11-30 01:54:48 25 4
gpt4 key购买 nike

我编写了一个将 Student 对象添加到名册数组中的方法。

void add(Student newStudent){
int i = 0;
while(i != classSize){ //classSize is the size of the roster array
if(roster[i] == null { //roster is an array of Student objects
roster[i] = newStudent;
}
i++;
}
}

我遇到的问题是,当我在主类中使用此方法时,它似乎只添加并打印第一个对象。

我的主要方法部分:

ClassRoster firstRoster = new ClassRoster();
scan = new Scanner(inputFile).useDelimiter(",|\\n");
while(scan.hasNext()){
String name = scan.next();
int gradeLevel = scan.nextInt();
int testGrade = scan.nextInt();
Student newStudent = new Student(name,gradeLevel,testGrade);
firstRoster.add(newStudent);
System.out.printf(firstRoster.toString());
}

输入文本文件看起来像这样:

John,12,95
Mary,11,99
Bob,9,87

但是,当我尝试打印firstRoster数组时,它只打印第一个对象。在本例中,它将打印 John 3 次。

John,12,95
John,12,95
John,12,95

如果我在文本文件中添加另一个学生,它只会打印 John 4 次,依此类推。

ClassRoster 类中的 toString 方法:

public String toString(){
String classString = "";
for(Student student : roster){
classString = student.toString(); //The student object uses another toString method in the Student class
}

return classString;
}

最佳答案

在此方法中:

void add(Student newStudent){
int i = 0;
while(i != classSize){ //classSize is the size of the roster array
if(roster[i] == null { //roster is an array of Student objects
roster[i] = newStudent;
}
i++;
}
}

将第一个 newStudent 对象分配给数组的所有项目。
因此,当您尝试分配 2nd 或 3d 时,没有任何一项为 null,并且不会完成任何分配。
在完成第一个任务后停止循环即可:

void add(Student newStudent){
int i = 0;
while(i != classSize){ //classSize is the size of the roster array
if(roster[i] == null { //roster is an array of Student objects
roster[i] = newStudent;
break;
}
i++;
}
}

编辑:
您的 ClassRoster 类(class)将仅返回最后一个学生的详细信息。
但您还应该检查是否有空值。
所以改成这样:

public String toString(){
String classString = "";
for(Student student : roster){
if (student != null)
classString += student.toString() + "\n";
}

return classString;
}

我不知道您的 Student 类的 toString(),我认为它按预期工作。

关于java - 编写一个将对象添加到数组的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54857021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com