gpt4 book ai didi

java - 允许对 void 调用返回语句

转载 作者:行者123 更新时间:2023-11-29 04:12:03 25 4
gpt4 key购买 nike

我正在寻找一种在 Java 中允许 return 语句像这样编译的方法:

public void void1(){
return;
}

public void void2(){
return void1(); // compile error here
}

Java 中有没有办法在调用无效时在同一行返回调用?当然,我最终不得不这样做:

   public void void2(){
void1();
return;
}

最佳答案

is there a way in Java to return a call on the same line if it's void

是的,您可以在同一行返回: void1();返回;

但是没有办法返回相同的表达式:return void1();

关于java - 允许对 void 调用返回语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54566233/

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