我想从 TextField 设置文本值并转换为整数。当整数转换时,我想得到一个值(n)。如果未输入整数值,例如字符串或字符,如何创建异常以使整数 (n) 的默认值 = 3?
private void Game(){
int n = 0;
String getsize;
getsize = size.getText();
//gets the text position and turns into integer
try{
n = Integer.parseInt(getsize);
}
catch(NumberFormatException e){
n = 3;
e.printStackTrace();
}
...
}