标签:net cat alt text static ima ref detail oid
记录一个今天某公司的面试问题,其实我问题回答对了,但是面试官问我动手验证过没有,这还真没有,纯理论,被怼惨了,希望自己能变得更强大。
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;
}
}
}
程序运行结果:
通过上面两个例子可以看出:
当然去掉 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语句块必定会得到执行。
吾生也有涯,而知也无涯。
标签:net cat alt text static ima ref detail oid
原文地址:https://www.cnblogs.com/hzauxx/p/11553208.html