为了账号安全,请及时绑定邮箱和手机立即绑定

为什么在catch里加上input = new Scanner(System.in);能够阻止无限循环

public static int inputCommand()

{

int a;

try

{

a = input.nextInt();

return a;

}catch(Exception e)

{

input = new Scanner(System.in);//阻止无限循环

//System.out.println("命令输入错误!请根据提示输入数字命令!");

return -1;

}

}


正在回答

1 回答

抛出异常,然后处理异常,处理完之后进行下一步

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么在catch里加上input = new Scanner(System.in);能够阻止无限循环

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信