为啥这段代码不等待输入[重复]

Posted

技术标签:

【中文标题】为啥这段代码不等待输入[重复]【英文标题】:Why does this code not wait for input [duplicate]为什么这段代码不等待输入[重复] 【发布时间】:2015-11-24 07:40:56 【问题描述】:

我希望代码停止并再次等待输入,但它运行时就像用户每次都按 Enter 键一样,从而创建了一个无限循环。

while(asking) 
    try    
        int answer = input.nextInt();   
    
    catch(Exception InputMismatchException)  
        System.out.println("Please only enter numbers.");
    

为什么要这样做?

编辑:我不担心 退出 while 循环。问题是它不会等待输入。

EDIT2:如果未触发异常,它将按预期运行。 (即用户输入了整数限制内的数字)

【问题讨论】:

你需要打电话给nextLine,以防你得到一个执行。否则它会创建一个无限循环。 哪个值有询问,什么时候改变? 你在哪里设置asking @EduardoYáñezParareda 没关系,设置为true,永远不要更改,问题会重现。 【参考方案1】:

您没有在while 循环内更改asking 的值,因此它将是一个无限循环。

【讨论】:

【参考方案2】:

试试这个。 nextInt 没有阻塞。 nextLine 可以。

while(asking) 
    int answer;
    try    
        answer = Integer.parseInt(input.nextLine());
    
    catch(Exception NumberFormatException)  
        System.out.println("Please only enter numbers.");
    

【讨论】:

【参考方案3】:

我认为这会奏效:

while(asking) 
    try    
        int answer = input.nextInt();   
    
    catch(Exception InputMismatchException)  
        System.out.println("Please only enter numbers.");
        input.next();
    

【讨论】:

以上是关于为啥这段代码不等待输入[重复]的主要内容,如果未能解决你的问题,请参考以下文章

这段java 多线程代码为啥id是1的线程一直在等待?

为啥这段代码不打印我的数组?

为啥这段代码会抛出 java.lang.***Error [重复]

为啥不等待 Task.WhenAll 抛出 AggregateException?

为啥这段代码在第二行写输入?

当异步函数不应该返回 Promise 时,为啥我需要等待它?