可能重复:
在Java中,最终返回王牌吗?
在下面的示例中,
class ex8
{
public void show()
{
try
{
int a=10/0;
return;
}
catch(ArithmeticException e)
{
System.out.println(e);
return;
}
finally
{
System.out.println("Finally");
}
}
public static void main(String[] args)
{
new ex8().show();
}
}
输出是:
java.lang.ArithmeticException: / by zero
Finally
尽管在 catch 中有 return 语句,Finally 是如何被打印出来的?