我目前正在开发一个包含多个学生对象的模块类,并且遇到了以下问题 -
一元运算符'+'的坏操作数类型字符串
我将不胜感激,我的代码如下.
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);
}
}
Run Code Online (Sandbox Code Playgroud)
Doo*_*nob 10
"\n percentageExam : " + percentageExam +
+studentsList[0].name+studentsList[1].name+studentsList[2].name);
// ^
// ^ look! oh noes!
Run Code Online (Sandbox Code Playgroud)
+在最后一行的开头有一个额外的.