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

finally语句用法

时间:2015-11-14 15:02:13      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:

辨析:finally语句块一定会执行吗?

请通过 SystemExitAndFinally.java示例程序回答上述问题

 

 public class SystemExitAndFinally {

 

   public static void main(String[] args)

 

    {

 

       try{   

 

            System.out.println("in main");   

 

            throw new Exception("Exception is thrown in main");        

 

                //System.exit(0);       

 

           }

 

  catch(Exception e) 

 

             {  

 

                 System.out.println(e.getMessage());

 

                 System.exit(0); 

 

             }    

 

         finally

 

        {     

 

          System.out.println("in finally");

 

        }

 

   }

 

}

 

运行结果截图:

技术分享

这时候finally语句执行。

//System.exit(0);  改为System.exit(0);  

运行截图:

 技术分享

求解答:finally语句什么时候执行?

 

finally语句用法

标签:

原文地址:http://www.cnblogs.com/1995-qxl/p/4964328.html

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