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中文網其他相關文章!