我刚刚完成了为我的编程教授做的实验室测试。但是由于标题中提到的错误,我的代码无法编译。我没时间了,无论如何都需要提交测试。我很好奇这里是否有人知道问题所在。我看不到问题,但是OnlineGDB(由于我的Eclipse版本不断崩溃,在线编译器)会给我这些错误。
Expecting { in class Name^() {
:请注意,它希望使用{所在的^。
我以前曾尝试过这样做,只希望它向我吐出更多没有道理的错误。
public class EnterName() {
void Name() {
System.out.println("Please Enter the name of the movie:\n")
this.Name = input.nextLine();
}
}//End EnterName();
答案 0 :(得分:0)
更改此:
public class EnterName() {
void Name() {
System.out.println("Please Enter the name of the movie:\n")
this.Name = input.nextLine();
}
}//End EnterName();
对此:
public class EnterName {
void Name() {
System.out.println("Please Enter the name of the movie:\n");
this.Name = input.nextLine();
}
}//End EnterName();
EnterName之后的“()”不属于其中
您错过了一个“;”在“ System.out.println(“请输入电影的名称:\ n”)“之后