黑马程序员技术交流社区
标题:
nextInt 在 try catch 中的问题
[打印本页]
作者:
gtzzu
时间:
2016-8-11 11:22
标题:
nextInt 在 try catch 中的问题
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入一个整数");
while (true) {
try {
System.out.println("执行了");
/*String s= sc.nextLine();
int a = Integer.parseInt(s);*/
int a = sc.nextInt();
System.out.println(a);
break;
} catch (Exception e) {
System.out.println("输入错误,请重新输入");
}
}
为什么用nextLine可以,而用nextInt不行?
用nextInt会一直循环,显示“输入错误,请重新输入
执行了。。。。。”
作者:
hexi5432
时间:
2016-8-11 18:27
貌似不对吧,你仔细看看!
作者:
小红花
时间:
2016-8-11 20:34
我试了下,没问题
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2