考虑到下面的代码,如果 catch 子句中抛出异常,finally 是否仍然运行?
try {
//code here throws exception
}
catch(Exception ex) {
//code catches above exception however code here also throws another exception
}
finally {
//does this code even run considering the exception thrown in the above catch clause??
}