有什么方法可以退出该方法吗?听说有两种退出方式。
一:抛出异常。
public void dosomething() {
if(...) {
throw new MyException();
}
// there might be another process.
}
二:返回一些值。即使是 void 方法,我们也可以返回值。
public void dosomething() {
if(...) {
return;
}
// there might be another process.
}
问题是,有没有更好的方法?