gpt4 book ai didi

java - IntelliJ IDEA 'class' 或 'interface' 预期

转载 作者:行者123 更新时间:2023-12-04 03:00:29 24 4
gpt4 key购买 nike

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 的第一个参数是“预期的‘类’或‘接口(interface)’”,但它编译并运行得很好。这里可能有什么错误?

最佳答案

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

关于java - IntelliJ IDEA 'class' 或 'interface' 预期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49651913/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com