2

以下のコードを考慮すると、catch 句で例外がスローされた場合でも最終的に実行されますか?

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??
}
4

1 に答える 1

7

はい、そうです。try / catchで何が起こったかに関係なく実行されます(JVMが何らかの理由でシャットダウンしないと仮定します)

于 2012-04-25T01:26:53.443 に答える