[求助] 编译时报 not a statement
public boolean check_number(String s){
boolean flag = false;
int i = Integer.parseInt(s);
return true;
NumberFormatException numberformatexception;
numberformatexception;
return false;
}
以上是bean 中的一个数字检测函数,javac 时, 报 numberformatexception; not a statement 错,请帮忙.