これはおそらく単純な問題ですが、私は問題を抱えています。私は3つのクラスを持っています。setmethodを含むStudentクラス:
public boolean setName(String fname)
{
this.name = fname;
return true;
}
文字列をsetmethodに渡すメインを持つTestClass
static Student action;
public static void main(String[] args)
{
action.setName("John");
}
addstudentメソッドを含むClassroomクラス。
public boolean add(Student newStudent)
{
???
return true;
}
オブジェクトを作成して配列リストに追加する方法は知っていますが、3つの別々のクラスを使用してそれを行う方法について混乱しています。私の配列リストの初期化は次のとおりです。
List<Student> studentList = new ArrayList<Student>();
Studentクラスで設定されている属性(この場合はname)を、Classroomクラスで作成されている新しいオブジェクトに関連付けるにはどうすればよいですか?