gpt4 book ai didi

java - Return 语句也结束父方法?

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

我对java编程相当陌生,我想知道是否有某种方法可以用某种“ super ”返回语句来结束其父方法。

例如:

public class test {

public method1 () {
...some code...

if (someValue == someValue2) {return;}

...more code...
}

public static void main(String[] args) {
...some code...

method1();

...more code...
}
}

我希望 method1 的 return 语句也能结束父方法(在本例中为 main 方法)的执行,而无需在 method1 调用后根据返回值添加 if 语句。这可能吗?

谢谢!

最佳答案

没有。

但是在您的示例中,退出会起作用(即停止执行所有操作),但如果您想要“更多控制”,则使您的方法返回一个值并检查该值。保持一致。例如我喜欢使用 0=成功,其他都是某种错误代码。

public class test {

public int method1 () {
...some code...
if (someValue == someValue2) {return -1;}
...more code...
return 0;
}

public static void main(String[] args) {
...some code...

if (method1() == 0) {
...more code...
}
}
}

关于java - Return 语句也结束父方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19438435/

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