在下面的例子中,
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中返回语句,最终是如何打印的?