gpt4 book ai didi

java - 如何从函数中打印ln值?

转载 作者:行者123 更新时间:2023-12-01 18:34:46 24 4
gpt4 key购买 nike

我想从 void add_up println 值 5,但我无法将函数名称:add_up 写入 System out.println()。如何从 main 中 println 并退出 void add_up ?谢谢。

import java.io.IOException;

public class function{

public static void main(String[] args) throws IOException {

System.out.println(add_up);

}

public int add_up(){
int a = 5;
return a;
}
}

最佳答案

为了调用该方法,您需要在其名称后添加 ()。

import java.io.IOException;

public class Function {

public static void main(String[] args) {
System.out.println(add_up());
}

public static int add_up(){
int a = 5;
return a;
}
}

其次,您需要创建您的方法 static所以静态方法main可以访问它。

关于java - 如何从函数中打印ln值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60083356/

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