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

一个异常学习的好例子

时间:2014-09-27 22:06:00      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   sp   div   on   c   

package 类加载器;

public class TestDemo {
    public static String output ="";
    public static void foo(int i){
       try{
           if(i == 1){
              throw new Exception();
           }
       }catch(Exception e){
           output += "2";
           return ;
       }finally{
           output += "3";
       }
       output += "4";
    }
 
    public static void main(String[] args) {
       foo(0);//无论是否发生异常,都会执行  1. output+3 2.output+4
       foo(1);
       System.out.println(output); //  3 .output+2  4.output+4
       //此处注意在catch中中的return ,finaly中的依然会执行
       //所以此时结果为
    }
}

 

一个异常学习的好例子

标签:style   blog   color   io   ar   sp   div   on   c   

原文地址:http://www.cnblogs.com/hansongjiang/p/3997156.html

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