trycatchfinally

Posted canzhen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了trycatchfinally相关的知识,希望对你有一定的参考价值。

题:

try {
            try {
                System.out.println("A");
                throw new Exception("1");
            }catch (Exception e){
                System.out.println("B");
                throw new Exception("2");
            }finally {
                System.out.println("C");
                throw new Exception("3");
            }
        }catch (Exception e){
            System.out.println(e.getMessage());
        }

运行结果:

技术图片

以上是关于trycatchfinally的主要内容,如果未能解决你的问题,请参考以下文章

js中trycatchfinally的执行规则

trycatchfinally容易忽略的点

trycatchfinally详解,你不知道秘密

trycatchfinally 执行顺序

异常和trycatchfinally的简记

trycatchfinally