gpt4 book ai didi

Java:需要标识符

转载 作者:行者123 更新时间:2023-12-01 18:05:14 25 4
gpt4 key购买 nike

这里有什么问题吗?

class UserInput {
public void name() {
System.out.println("This is a test.");
}
}

public class MyClass {
UserInput input = new UserInput();
input.name();
}

这提示:

<identifier> expected
input.name();

最佳答案

将代码放入方法中。

试试这个:

public class MyClass {
public static void main(String[] args) {
UserInput input = new UserInput();
input.name();
}
}

然后从 IDE“运行”该类

关于Java:需要标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60569487/

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