码迷,mamicode.com
首页 > 其他好文 > 详细

trycatchfinally

时间:2020-05-27 00:50:30      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:图片   get   exception   out   image   message   color   row   结果   

题:

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

标签:图片   get   exception   out   image   message   color   row   结果   

原文地址:https://www.cnblogs.com/canzhen/p/12969707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!