我目前正在研究一个包含几个学生对象的模块类,并且遇到了以下问题 -
一元运算符“+”的错误操作数类型字符串
我将不胜感激,我的代码如下。
public class Module {
private String moduleTitle;
int percentageCoursework;
int percentageExam;
private Student studentsList[] = new Student[3];
public Module (String moduleTitle, int percentageCoursework, int percentageExam,String studentOne, String studentTwo, String studentThree, String studentsTitles[])
{
this.moduleTitle = moduleTitle;
this.percentageCoursework = percentageCoursework;
this.percentageExam = percentageExam;
this.studentsList[0].name = studentOne;
this.studentsList[1].name = studentTwo;
this.studentsList[2].name = studentThree;
}
public void ShowDetails()
{
System.out.println("moduleTitle : " + moduleTitle +
"\n percentageCoursework : " + percentageCoursework +
"\n percentageExam : " + percentageExam +
+studentsList[0].name+studentsList[1].name+studentsList[2].name);
}
}