以前看视频老师都没处理异常 今天做一点小东西的时候出了这么个问题 下面是代码[code=java] public static void main(String[] args) {
try {
Integer.parseInt("bbb");
}catch(Exception e){
throw new RuntimeException("catch中的Exception");
}finally{
Integer.parseInt("abc");
//throw new RuntimeException("finally中的Exception");
}
}
}[/code]上面代码的问题是如果finally里中也出现了异常的话catch中的异常就不会抛出,那么就无法捕获,怎样才能在finally也出现异常的情况下捕获catch里的异常呢? |
|