public class StudentApp {
public static void main(String[] args) {
Student student1 = new Student("test");
Student student2 = new Student("test","test");
System.out.println(student2.getId());
}
}
构造函数如下所示:
public Student(String firstName, String lastName){
this.id=nextId++;
this.name = firstName+" "+lastName;
}
student2的第一个论点是"' class'或者'界面'预期"但它编译并运行得很好。这可能是什么错误?
答案 0 :(得分:2)
转到语言注入页面:编辑器|语言注入并取消选中或删除IDE创建的注入。
答案 1 :(得分:0)
此错误主要是由于代码中是否存在多余的括号引起的。从代码中删除多余的括号。