class Test
{
public static void main(String[] args)
{
try
{
func();
System.out.println("A");//此处的A为什么没有打印呢
}
catch(Exception e)
{
System.out.println("C");
}
System.out.println("D");
}
public static void func() throws Exception
{
try
{
throw new Exception();
}
finally
{
System.out.println("B");
}
}
}
|