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 중국어 웹사이트의 기타 관련 기사를 참조하세요!