Try-Catch-Finally语句块执行问题
Posted hzauxx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Try-Catch-Finally语句块执行问题相关的知识,希望对你有一定的参考价值。
Try-Catch-Finally语句块执行问题
记录一个今天某公司的面试问题,其实我问题回答对了,但是面试官问我动手验证过没有,这还真没有,纯理论,被怼惨了,希望自己能变得更强大。
Try-Catch-Finally语句块执行问题。
一起来看下面这串代码:
public class TryCatchFinally
public static void main(String[] args)
System.out.println(get());
private static int get()
try
System.out.println("Try语句块");
return 0;
catch (Exception e)
System.out.println("Catch语句块");
return 1;
finally
System.out.println("Finally语句块");
return 2;
程序运行结果:
再来看下面这串代码:
public class TryCatchFinally
public static void main(String[] args)
System.out.println(get());
private static int get()
try
System.out.println("Try语句块");
throw new Exception();
catch (Exception e)
System.out.println("Catch语句块");
return 1;
finally
System.out.println("Finally语句块");
return 2;
程序运行结果:
总结:
通过上面两个例子可以看出:
- 无论是否在 try 语句块中抛出异常,finally语句块中的内容都会得到执行。
- 只有 try 语句块中抛出异常了,catch语句块中的内容才会得到执行。
- 但无论在 try 和 catch 语句块中是否有返回语句,finally 语句都会得到执行,并且当 finally 语句中有 return 语句,try 和 catch 语句中的 return 语句都无法得到执行。
当然去掉 finally 中的 return 语句,try 或 catch 中的 return 语句又可以得到执行,这个可以直接在上面那个程序进行试验。
同时 finally 语句块中包含 return 语句,编译器也会给出警告:finally block can not complete normally。
这是因为 finally 的 return 语句覆盖了前面的 return 语句,是一种不合理的做法,尽量不要在 finally 中使用 return。
补充一点:
为什么 finally 语句始终都会得到执行,这里推荐一篇博客:https://blog.csdn.net/neosmith/article/details/48093427
简单来说就是 JVM 将 finally 语句块中的东西都复制了一遍到 try 和 catch 语句块中,确保 finally语句块必定会得到执行。
吾生也有涯,而知也无涯。
以上是关于Try-Catch-Finally语句块执行问题的主要内容,如果未能解决你的问题,请参考以下文章
请简述JAVA中 try-catch-finally 语句的执行过程 简单明了 好的话 加分(曹苇提问)