티스토리 뷰
정수인지 확인 하는 함수
boolean isInteger(String str){
try{
Integer.parseInt(str);
return true;
}
catch(Exception e){
return false;
}
}
댓글
정수인지 확인 하는 함수
boolean isInteger(String str){
try{
Integer.parseInt(str);
return true;
}
catch(Exception e){
return false;
}
}