首頁 > Java > java教程 > 為什麼 Java 的 `nextLine()` 在 `nextInt()` 之後表現異常?

為什麼 Java 的 `nextLine()` 在 `nextInt()` 之後表現異常?

Barbara Streisand
發布: 2024-12-21 11:37:17
原創
721 人瀏覽過

Why Does Java's `nextLine()` Behave Unexpectedly After `nextInt()`?

nextLine() 理解

在Java 的java.util.Scanner API 中,nextLine() 方法使開發人員能夠解析字串輸入來自使用者。但是,在循環內或在 nextInt() 等其他輸入解析方法之後使用時,它的行為可能會有所不同。

場景 #1:

使用 nextLine( 的程式碼片段) 成功:

Scanner scanner = new Scanner(System.in);

// Wait for user input before continuing
String sentence = scanner.nextLine();

// Continue with more input
int index = scanner.nextInt();
登入後複製

在這種情況下,nextLine()會等待使用者輸入,然後再繼續nextInt().

場景#2:

現在考慮一個行為異常的程式碼片段:

Scanner scanner = new Scanner(System.in);

// Infinite loop
while (true) {
    // Menu options
    int selection = scanner.nextInt();

    // Input only works after reading the number
    if (selection == 1) {
        String sentence = scanner.nextLine();
        int index = scanner.nextInt();
    }
}
登入後複製

這裡,nextLine() 不nextInt() 之後不等待使用者輸入。它會跳到下一行,導致無法輸入句子。

說明:

這些範例的差異在於 nextInt() 方法。它讀取數字輸入,但不消耗後面的換行符號 (n)。因此,當 nextInt() 之後呼叫 nextLine() 時,它會嘗試讀取已經使用的換行符,導致場景 #2 中的意外行為。

解決方案:

要解決此問題,請在每個nextInt() 之後插入一個額外的nextLine() 調用,以在繼續下一個輸入之前消耗該行上的剩餘輸入要求。這確保了 nextLine() 始終等待使用者輸入。

以上是為什麼 Java 的 `nextLine()` 在 `nextInt()` 之後表現異常?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板