Stringをintに変換できるかどうか判断する方法

void errorCheck(String arg){
try{
String.intValue(arg);
}catch(NullPointerdException e){
throw new LogicalException(“ERROR_CODE”);
}catch(NumberFormatException e){
throw new LogicalException(“ERROR_CODE”);
}
}


その他

コメント

  1. ??Blog より:

    納豆キャベツトライ

タイトルとURLをコピーしました