本帖最后由 周斌 于 2012-11-3 15:14 编辑
public class ExceptionSilencer
{
public static void main(String[] args)
{
throw new RuntimeException();
}
}
这段小代码运行结果:见附图
public class ExceptionSilencer
{
public static void main(String[] args)
{
try
{
throw new RuntimeException();
}
finally
{
return;
}
}
}
为什么这样就没有运行的结果呢?finally一定会执行,那么为什么没有显示呢?
|
|