本帖最后由 戎石锁 于 2012-8-6 14:04 编辑
class Demo
{
public static void func()
{
try
{
throw new Exception();
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");
}
}
这个为什么编译失败啊! 看视频没看懂,求文字解释一下!! |
|