gpt4 book ai didi

java - 为什么这段代码无法运行?

转载 作者:行者123 更新时间:2023-12-01 07:36:34 26 4
gpt4 key购买 nike

这里是 super java菜鸟,我确信这可能是一个愚蠢的错误。有人愿意纠正我吗?

public class Test1 {

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
int n = 4;

public void f(int n){
System.out.print(n);
if(n<=1)
return;
else{
f(n/2);
f(n/2);
}
}
}

我收到此错误:

Exception in thread "main" java.lang.RuntimeException:
Uncompilable source code - illegal start of expression at the
public void f(int n)

最佳答案

在 Java 中,您不能在方法内声明方法。您在 public void f(int n) 之前的某处缺少 }

关于java - 为什么这段代码无法运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11172845/

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