メソッドを終了する方法はありますか? 出る方法は2つあると聞いています。
1 :例外をスローします。
public void dosomething() {
if(...) {
throw new MyException();
}
// there might be another process.
}
2 :何らかの値を返します。void メソッドでも、値を返すことができます。
public void dosomething() {
if(...) {
return;
}
// there might be another process.
}
質問は、より良い方法はありますか?