try-catch-finally
如果 finally 代码块没有执行的原因
- 没有进入 try 代码块
- 进入 try 代码块,但是代码中运行中出现了死循环或者死锁状态
- 进入 try 代码块,但是执行了 System.exit() 操作
注意:finally 是在 return 表达式运行后执行的,此时需要将 return 的结果已经被暂存起来,待 finally 代码块执行结束后再将之前暂存的结果返回。
try-catch 有return 语句
- 无异常,则返回 try 中的 return
- 有异常,则返回 catch 中的 return
try-catch-finally 都有 return 语句
注意:finally 的职责不在于对变量进行赋值等操作,而是清理资源、释放连接、关闭管道流等操作。
建议禁止在 finally 赋值或者 return
package top.simba1949; /** * 执行 try-finally 的代码,即无异常执行,finally 的 return 生效; * 执行 try-catch-finally 的代码,即有异常执行,finally 的 return 生效; * * 总之,无论有无异常,都是 finally 的 return 生效 * @author SIMBA1949 * @date 2019/8/18 14:20 */ public class TestTryCatchFinally { public static void main(String[] args) { System.out.println("getStr is " + getStr()); } public static String getStr(){ try { System.out.println("x"); // int i = 1/0; return "x"; } catch (Exception e) { System.out.println("y"); return "y"; } finally { System.out.println("z"); return "z"; } } }