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 的第一个参数是“预期‘类’或‘接口’”,但它编译并运行得很好。这里可能有什么错误?
转到语言注入页面:编辑器 |语言注入并取消选中或删除 IDE 创建的注入。
此错误主要是由于代码中存在多余的括号引起的。从代码中删除多余的括号。
删除多余的括号或方括号。