博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java异常体系---不要在finally块中使用return、throw
阅读量:6605 次
发布时间:2019-06-24

本文共 1793 字,大约阅读时间需要 5 分钟。

hot3.png

在finally块中使用return、throw,会导致编译告警:finally block does not complete normally。

情况一:finally块中没retrun、throw

复制代码

public static void method_1() {    try {        System.out.println("try block run");        throw new Exception("try block 异常");    } finally {        System.out.println("finally block run");    }}public static void method_2() {    try {        System.out.println("try block run");    } catch (Exception e) {        System.out.println("catch block run");        throw new Exception("catch block 异常了!");    } finally {        System.out.println("finally block run");    }}

复制代码

 说明:程序报错,Unhandled exception type Exception。此时编译器会检查try块、catch块中的非运行时异常。

情况二:finally块中有retrun或者throw

复制代码

public static void method_1() {    try {        System.out.println("try block run");        throw new Exception("try block 异常");    } finally {        System.out.println("finally block run");        return;    }}程序运行结果:try block run   》》  finally block runpublic static void method_2(){    try{        System.out.println("try block run");       }catch (Exception e) {        System.out.println("catch block run");        throw new Exception("catch block 异常了!");    }finally{        System.out.println("finally block run");        throw new RuntimeException("finally block 异常了!");    }    }程序运行结果:try block run   》》  finally block run  》》  finally block 异常了!

复制代码

说明:程序告警,finally block does not complete normally。此时编译器不会检查try块、catch块中的非运行时异常。

JVM不会再去捕获try块、catch块中的异常,而是得到(使用return时)finally块的返回值或者(使用throw时)finally块中抛出的异常。

结论:

当在finally块中使用return、throw时,编译器不会再对try、catch块中的非运行时异常进行检查,JVM不会再去捕获try块、catch块中的异常,程序的输出以finally块为准,即finally块的返回值或者finally块中抛出的异常。

当在try块或catch块中遇到return语句时,finally块将在方法返回之前被执行。finally块中的return语句会覆盖try块、catch块中的return语句。合理的做法是在 finally 块之后使用return语句。

转载于:https://my.oschina.net/u/1034481/blog/824203

你可能感兴趣的文章
DBA日常工作职责
查看>>
Redis的持久化
查看>>
linux安装NFS服务器学习
查看>>
Planner .NET日历日程控件能给你的应用程序提供多种日历日程功能
查看>>
我的友情链接
查看>>
Linux压力测试
查看>>
JAVA中的线程机制(二)
查看>>
nginx安装与配置2(转载)
查看>>
Linux下Mongodb安装和启动配置
查看>>
2015 成长计划
查看>>
沈阳一饭店凌晨爆燃,燃气报警器时刻预防
查看>>
Redis 与 数据库处理数据的两种模式
查看>>
VUE2中axios的使用方法
查看>>
assert 断言
查看>>
CS 229 notes Supervised Learning
查看>>
2018.10.27-dtoj-3996-Lesson5!(johnny)
查看>>
DataTable转换成json字符串
查看>>
RecyclerView重用导致的元素重复问题
查看>>
iOS网络协议----HTTP/TCP/IP浅析
查看>>
ubuntu 12.04 安装 redis
查看>>