> Java > java지도 시간 > `nextInt()` 이후 `nextLine()`이 오작동하는 이유는 무엇이며 어떻게 수정할 수 있습니까?

`nextInt()` 이후 `nextLine()`이 오작동하는 이유는 무엇이며 어떻게 수정할 수 있습니까?

Barbara Streisand
풀어 주다: 2024-12-14 13:30:11
원래의
456명이 탐색했습니다.

Why Does `nextLine()` Misbehave After `nextInt()` and How Can It Be Fixed?

nextLine() 동작 수정

두 번째 코드 예제에서 nextLine()을 사용할 때 발생하는 문제는 nextInt()의 조합에서 비롯됩니다. 및 nextLine().

문제 nextInt()

nextLine()은 공백과 Enter 키를 누르기 전에 입력한 문자를 포함하여 전체 줄을 사용합니다. 그러나 nextInt()는 숫자 값만 사용합니다. 숫자 뒤에 숫자가 아닌 문자나 공백이 있으면 nextLine()이 이를 읽으려고 시도하여 예상치 못한 동작이 발생합니다.

해결책: 남은 줄바꿈 사용

nextLine()이 의도한 대로 전체 줄을 읽으려면 각 nextInt() 뒤에 nextLine() 호출을 추가하여 줄의 잔여 문자를 모두 사용할 수 있습니다. 이렇게 하면 nextLine()을 사용하여 문장을 읽을 때 완전한 줄을 받게 됩니다.

수정 예:

// Example #2 (Corrected)
import java.util.Scanner;

class Test {
    public void menu() {
        Scanner scanner = new Scanner(System.in);

        while (true) {
            System.out.println("\nMenu Options\n");
            System.out.println("(1) - do this");
            System.out.println("(2) - quit");

            System.out.print("Please enter your selection:\t");
            int selection = scanner.nextInt();
            scanner.nextLine(); // Consume remaining newline

            if (selection == 1) {
                System.out.print("Enter a sentence:\t");
                String sentence = scanner.nextLine();

                System.out.print("Enter an index:\t");
                int index = scanner.nextInt();

                System.out.println("\nYour sentence:\t" + sentence);
                System.out.println("Your index:\t" + index);
            }
            else if (selection == 2) {
                break;
            }
        }
    }
}
로그인 후 복사

위 내용은 `nextInt()` 이후 `nextLine()`이 오작동하는 이유는 무엇이며 어떻게 수정할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿