class ExceptionDemo9
{
public static void func()
{
try
{
throw new Exception();
}
finally
{
System.out.println("b");
}
}
public static void main(String[] args)
{
try
{
func();
System.out.println("a");
}
catch (Exception e)
{
System.out.println("c");
}
System.out.println("d");
}
}
这个编译是失败的,为什么呢 ?
虽然异常看过了,但是对于这章知识还很模糊。
以后这个异常能遇到吗? 异常不是计算机给我们的吗?自己搞一个异常做撒 ?
|