求大神告知下面代码中为什么加上input.nextLine(),就能终止死循环
try{intcodeid=input.nextInt();switch(codeid){case1:inbook(user);break;case3:doStoreMg...
try{
int codeid=input.nextInt();
switch(codeid){
case 1:
inbook(user);
break;
case 3:
doStoreMgr(user);
break;
default:
throw new Exception();
}
}
catch(Exception e)
{ System.out.println("请选择正确的数字");
input.nextLine();//加上这句之后就不会死循环了
doStoreMgr(user);
} 展开
int codeid=input.nextInt();
switch(codeid){
case 1:
inbook(user);
break;
case 3:
doStoreMgr(user);
break;
default:
throw new Exception();
}
}
catch(Exception e)
{ System.out.println("请选择正确的数字");
input.nextLine();//加上这句之后就不会死循环了
doStoreMgr(user);
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询