30
是否finally块总是用Java执行?
考虑到这段代码,无论是什么,我是否可以绝对确定该finally块始终执行something()? try { something(); return success; } catch (Exception e) { return failure; } finally { System.out.println("I don't know if this will get printed out"); }