gpt4 book ai didi

java - 表达式开始非法 : declaring a method inside another method

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

我知道这可能是一个简单的解决方案,但我才刚刚开始使用 java。我需要在主方法中声明一个清除屏幕的方法。第 5 行给我一个名为“非法表达式开始”的错误。

public class Project2
{
public static void main(String [] args)
{
public static void clearScreen()
{
System.out.print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
}// end clearScreen()

System.out.print("\nDid it work?");
}
}

最佳答案

Java 中不允许嵌套方法(到目前为止)。您能得到的最接近的是

class Project2 {
public static void main(String [] args) {
class InnerClass {
void clearScreen() {
// Do something.
}
}
new InnerClass().clearScreen(); // Call it this way.
}
}

如果上述解决方案不适合,只需将该方法移到 main 之外并调用它即可。

关于java - 表达式开始非法 : declaring a method inside another method,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19189214/

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