一个人如何打印另一个对象数组中一个对象的私有int数据字段。
因此,如果我有一个名为Classroom的对象和另一个名为Student的对象,我该如何在Classroom对象的私有数组成员中打印出该学生对象的学生ID?
我会在Student中重写toString来打印studentID吗?但是,如何在Classroom对象的数组中使用它来打印ID数组呢?
答案 0 :(得分:6)
班级学生{ 私有ArrayListids;
public Student(){
ids.add("S001");
ids.add("S002");
}
public ArrayList<String> getID(){
return this.ids;
}
} 类ClassRoom {
public static void main(String args[]){
Student s=new Student();
ArrayList<String>studentID=s.getID();
for(String id:studentID){
System.out.println("Student ID :"+id);
}
}
}
答案 1 :(得分:1)
在您的Student
课堂上,您应该创建一个返回学生ID的方法,如下例所示:
class Student
{
private id;
//... constructor and other code
int getID() {return this.id;}
}
在您的Classroom
类中,您应该创建一个将学生添加到学生数组中的方法(在这种情况下,我使用了ArrayList)和一种打印列表中所有学生ID的方法。看下面:
class Classroom
{
private ArrayList<Student> studentsList;
//... constructor and other code
void addStudent(Student student) {
this.studentsList.add(student);
}
void printStudentsList() {
for(Student student: this.studentsList) {
System.out.println(student.getID());
}
}
}
请注意,这只是实现所需目标的一种方法。由于您没有发布代码,因此我随即提供了您提供的信息。
答案 2 :(得分:0)
我认为您需要创建一些public methods
才能使用private attributes
。我认为您可以将Student
和Classroom
类设计如下:
class Student
{
private int studentID;
//and others private attributes
public student()
{
//write something here to initiate new object
}
public int getID()
{
return studentID;
}
//you can insert others methods here
}
class Classroom
{
private Student[] studentArray;
//add constructer here if you need it
public int getStudentId(int position) //get student ID at `position` in the array
{
return studentArray[position].getID();
}
}
public class Main
{
public static void main(String[]args)
{
Classroom classroom = new Classroom();
//do something to insert student to array of the `classroom`
//assume you need to get ID of student in 6th place
System.out.println(classroom.getStudentID(6));
}
}