这可能是一个简单的问题,但我遇到了问题。我有3节课。一个包含 setmethod 的 Student 类:
public boolean setName(String fname)
{
this.name = fname;
return true;
}
带有将字符串传递给 setmethod 的 main 的 TestClass
static Student action;
public static void main(String[] args)
{
action.setName("John");
}
以及一个包含添加学生方法的 Classroom 类。
public boolean add(Student newStudent)
{
???
return true;
}
我知道如何创建对象并将其添加到数组列表中,但我对如何使用 3 个单独的类来做到这一点感到困惑。我的数组列表初始化是:
List<Student> studentList = new ArrayList<Student>();
我如何将 Student 类中设置的属性(在这种情况下为名称)与 Classroom 类中创建的新对象相关联?