public StudentClass(char level, int number, Teacher educator, int maxStudents)
{
this.level = level;
this.number = number;
this.educator = educator;
this.numStudents = 0;
this.students = new Student[maxStudents];
}
public StudentClass(char level, int number)
{
this.level = level;
this.number = number;
this.numStudent = 0;
this.students = new Student[STANDART];
}
它给了我一个文字错误-StudentClass请帮助我....谢谢你