本帖最后由 杨千里 于 2012-9-19 20:36 编辑
class Demo
{
public static void func()
{
throw new Exception(); //把异常抛出,不久该catch了吗?
System.out.println("A");
}
catch(Exception e)
{
System.out.println("B");
}
public static void main(String args[])
{
try
{
func();
}
catch(Exception e)
{
System.out.println("c");
}
System.out.println("D");
}
}
结果不应该是B D吗?为什么会编译失败? |
|