问答详情
源自:1-9 经验总结

为什么在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;

}

}


提问者:慕仙4469632 2019-08-06 09:24

个回答

  • 半梦半痴狂
    2019-08-06 10:13:27

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