本帖最后由 完美恋爱 于 2013-12-6 09:05 编辑
class Demo
{
public static void aaa()
{
try
{
throw new Exception();
}
catch(Exception e)
{
System.out.println("A");
}
}
public static void main(String[] args)
{
try
{
aaa();
}
finally
{
System.out.println("B");
}
}
}
aaa()方法里既然有throw了,为什么不在aaa()方法上声明呢?这样不能编译失败吗?
|