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

java 关键字finally的用法

时间:2014-12-02 19:23:40      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:java   finally   

只有一种情况finally中的代码不会执行,前面有System.exit(0) 或者 System.exit(1)

1、System.out.println("=========================");语句不会执行

public class ExceptionTest {
	public static void main(String[] args) {
		
		try{
			throw new Exception();
		} catch(Exception e){
			System.exit(0);			
		} finally {
			System.out.println("=========================");
		}
	}
}

2、System.out.println("=========================");语句执行

前面的return语句,下面的finally也会执行

public class ExceptionTest {
	public static void main(String[] args) {
		
		try{
			throw new Exception();
		} catch(Exception e){
			//System.exit(1);	
			return;
		} finally {
			System.out.println("=========================");
		}
	}
}

java 关键字finally的用法

标签:java   finally   

原文地址:http://blog.csdn.net/u011402596/article/details/41681373

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