我是 Java 新手。我创建此代码是为了检查输入字段中的字符串或数字。
try {
int x = Integer.parseInt(value.toString());
} catch (NumberFormatException nFE) {
// If this is a string send error message
throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR,
" " + findValue + " must be number!", null));
}
如何创建相同的数字检查但if(){}
不使用 try-catch?