本帖最后由 陈祥厅 于 2013-1-8 23:35 编辑
class Demo
{
public static void func()
{
try
{
throw new Exception();
System.out.println("A");
}
catch(Exception e)
{
System.out.println("B");
}
}
pubic static void main(String[] args)
{
try
{
func();
}
catch(Exception e)
{
System.out.println("C");
}
System.out.println("D");
}
}
//编译失败,因为打印“A”的输出语句执行不到。----------------------------打印A的执行不到但是上面不是抛异常了么为啥下面catch里面的不执行啊 |