ブロックの最後にない場合、catch ブロックの動作は何ですか。
private Boolean connect(String addr) {
.....
try {
connected = true;
} catch (ExceptionType name) {
//log // print stack trace etc, but no explicit return
} catch (ExceptionType name) {
}
if (some_other_condn) {
..
}
}
ブロック内の残りのコードを実行したくない場合、catch ブロック内に戻る必要がありますか?