IntelliJ IDEA“类”或“接口”预期

问题描述 投票:0回答:3
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 的第一个参数是“预期‘类’或‘接口’”,但它编译并运行得很好。这里可能有什么错误?

java class intellij-idea interface
3个回答
4
投票

转到语言注入页面:编辑器 |语言注入并取消选中或删除 IDE 创建的注入。


2
投票

此错误主要是由于代码中存在多余的括号引起的。从代码中删除多余的括号。


0
投票

删除多余的括号或方括号。

© www.soinside.com 2019 - 2024. All rights reserved.