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

【自动化__持续集成】___java___finally

时间:2017-09-07 22:01:20      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:代码   www.   nal   pack   auto   异常   []   highlight   exception   

一、代码如下

package www.wujianbotwo;

public class Demo14 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Demo14 demo14= new Demo14();
		demo14.nullTest();

	}
	
	private void nullTest() {
		// TODO Auto-generated method stub
		try {
			String s= null;
			//int x= 9 / 0;
			System.out.println(s.length());
			//System.out.println(x);
		} 
		catch (ArithmeticException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		catch (NullPointerException e) {
			// TODO Auto-generated catch block
			//e.printStackTrace();
			System.out.println(e);
			System.out.println("字符变量没有初始化");
		}
		finally {
			System.out.println("不管有没异常,我都会执行");
		}
	}

}

 

【自动化__持续集成】___java___finally

标签:代码   www.   nal   pack   auto   异常   []   highlight   exception   

原文地址:http://www.cnblogs.com/wujianbo123/p/7492031.html

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