我遇到一种情况,如果某个值没有返回,我可能需要阻止其余的onClick方法运行:
public void onClick(View v) {
double a = 0;
double b = 0;
double c = 0;
try {
a = Double.parseDouble(((EditText) getView().findViewById(R.id.area_a)).getText().toString());
b = Double.parseDouble(((EditText) getView().findViewById(R.id.area_b)).getText().toString());
c = Double.parseDouble(((EditText) getView().findViewById(R.id.area_c)).getText().toString());
} catch (NumberFormatException e) {
//Exception here! Do not continue with the rest of the onClick method!
}
...
}
如果捕获到异常,有没有办法跳过onClick方法的其余部分?
答案 0 :(得分:4)
尝试将return;
放入catch块中。