码迷,mamicode.com
首页 > 编程语言 > 详细

java中异常注意的细节1

时间:2014-07-28 15:11:23      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   java   color   io   div   ar   new   

/* public class Test{
   public static void main(String[] args){
       int i=0;
	   try{
	       func();//区别就是该函数抛出的异常被封装了,外界不知道到底会不会发生该异常
		   System.out.println("i = " + i++);//所以这句话是有机会执行的
	   }catch(Exception e){
	       System.out.println("i = " + i++);
	   }
   }
   
   static void func() throws Exception{
       throw new Exception();
   }
}
 */
public class Test{
	public static void main(String[] args){
	    int i=0;
	    try{
		   throw new Exception();
		   System.out.println("i = " + i++);//完全的废话,肯定不会被执行到
		}catch(Exception e){
		   System.out.println("i = " + i++);
		}
		
		System.out.println("i = " + i++);
	}
}

  

java中异常注意的细节1,布布扣,bubuko.com

java中异常注意的细节1

标签:style   blog   java   color   io   div   ar   new   

原文地址:http://www.cnblogs.com/hujunzheng/p/3872643.html

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