欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

try{} catch(){}finally{}执行

程序员文章站 2022-04-06 15:54:43
...
public class ttt
{
	public static void main(String[] args)
	{
		try
		{
			System.out.println(1) ;
			int a = 1/0 ;
			System.out.println(2) ;
		}
		catch (Exception e)
		{
			System.out.println(3) ;
			System.out.println(e.toString()) ;
			System.out.println(4) ;

		}
		finally
		{
			System.out.println(5) ;

		}
		System.out.println(6) ;

	}
}


以前认为try{} catch(){}finally{},出现异常就跳出try语句块,执行catch,最后执行finally就OK了,

今天才发现原来我一直犯一个很大的错误,finally执行结束后,会继续往下执行,上面的代码运行结果为

1
3
java.lang.ArithmeticException: / by zero
4
5
6