第一章作业参考
参考作业的最后几行中的“console = new Scanner(System.in);“的作用是什么,为什么删掉后在输入书本序号时输入字母就会陷入死循环。
private static int inputCommand(){
int command;
try {
command = console.nextInt();
return command;
} catch (Exception e) {
//若输入字符型或者字符串,则抛出异常,捕获该异常,抛出”错误命令异常“
console = new Scanner(System.in);
//返回-1
return -1;
}