作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这似乎是一个愚蠢的问题。我尝试了不同的资源来了解如何从调用堆栈中弹出 void 方法。我无法弄清楚,寻求帮助。提前致谢。
一个简单的例子——
public static void main(String args[]){
int sum = sum(2,3);
System.out.println(sum);
}
public static int sum(int first, int second){
return first + second;
}
最佳答案
来自 The Java® Virtual Machine Specification-Java SE 8 Edition [2.11.8] :
...the return instruction is used to return from methods declared to be void, instance initialization methods, and class or interface initialization methods.
return
操作说明:
public void test() {
return;
}
public void test() {
}
关于java - void 方法如何从调用堆栈中弹出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59617728/
我是一名优秀的程序员,十分优秀!