gpt4 book ai didi

java try catch finally - 返回

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

尝试 try catch finally 用例 -

public class Finallyy {
public static void main(String[] args) {
int result = method1();
System.out.println(result);
}

private static int method1() {
int a = 2;
try {
int b = 0;
a = a / a;
System.out.println("try");
return a;
} catch (Exception e) {
System.out.println("caught");
a = 5;
return a;
}
finally {
System.out.println("finally");
a = 10;
return a;
}
}
}

输出:

try

finally

10

If the code is modified to

finally {
System.out.println("finally");
a = 10;
//return a;
}

输出:

try

finally

1

问题 - 是否存在某种堆栈概念,其中 ' return a ' 在 try block 被存储[如果示例被更改,则它适用于 try 或 catch block ],并在控制离开 method1() 时弹出。仅在缺少 ' return 的情况下' 在 finally堵塞 ?

更新:解决方案结论:

当执行return语句时,将存储要返回的值。当finally block 完成时,返回该值。

finally block 总是最后执行。因此,finally block 中的返回值会覆盖 try/catch block 中的其他返回值。由于这个原因,从finally block 中返回或抛出异常是一种非常糟糕的做法。

所以对于最初的问题 - 是否只有在没有 ' return 的情况下才有效? ' 在 finally堵塞 ?不。没关系。

编辑:

此问题于 4 月 8 日提出,现已得到解答。当前与此一起标记为重复的问题是稍后 [8 月 15 日] 提出的问题。因此,新问题将被标记为重复,而不是这个。然而,分享对类似问题的引用是很好的。

最佳答案

try block 在其 finally block 之前执行。

执行return语句时,将存储要返回的值。当 finally block 完成时,将返回该值。

请注意,a 不是一个值。 a 是存储值的变量。如果您更改a,您就更改了a,而不会更改为返回存储的值。

由于技术原因,我们转到Java Language Specification on the try-finally block

If execution of the try block completes abruptly for any other reason R, then the finally block is executed, and then there is a choice:

  • If the finally block completes normally, then the try statement completes abruptly for reason R.

  • If the finally block completes abruptly for reason S, then the try statement completes abruptly for reason S (and reason R is discarded).

A return statement completes abruptly ,因此如果带有 finallytry 有一个 return 并且 finally 也有一个 returnfinallyreturn 取代 try 的。

关于java try catch finally - 返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22950240/

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