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

finally块中的代码一定会执行吗?

时间:2014-07-22 08:25:35      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:java   io   re   c   代码   ar   


    public static void main(String[] args) {
//        // TODO Auto-generated method stub
        try {
            System.out.println("how‘s the weather today?");
        } catch (Exception e) {
            System.out.println("i don‘t know");
        }finally{
            System.out.println("weather is fine");
        }

    Output:

    how‘s the weather today?
    weather is fine

    这个大家都懂吧,我就不说什么了。

    如果我加return的话,结果会怎么样?上测试代码:

    

    public static void main(String[] args) {
//        // TODO Auto-generated method stub
        try {
            System.out.println("how‘s the weather today?");
            return;
        } catch (Exception e) {
            System.out.println("i don‘t know");
            return;
        }finally{
            System.out.println("weather is fine");
        }

    结果还是:

    how‘s the weather today?
    weather is fine

    

    代码走完,可能有些人得出结论:finally一定会执行。

    不要着急,还没有完,再跑一段代码:

    public static void main(String[] args) {
//        // TODO Auto-generated method stub
        try {
            System.out.println("how‘s the weather today?");
            System.exit(0);
        } catch (Exception e) {
            System.out.println("i don‘t know");
        }finally{
            System.out.println("weather is fine");
        }

    Output:

    how‘s the weather today?

    观看输出发现finally块并没有被执行,JVM都退出了,还怎么运行呢。所以以后有人问的话,可以这样说,在JVM正常运行的情况下,finally块一定会执行。


finally块中的代码一定会执行吗?,布布扣,bubuko.com

finally块中的代码一定会执行吗?

标签:java   io   re   c   代码   ar   

原文地址:http://my.oschina.net/u/617909/blog/292565

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