嗨我有一个关于.nextLine的使用的问题以及为什么它在无限循环期间第二次跳过用户输入。 .next函数(字母输入)仍然每次都要求用户输入,但.nextLine函数(短语输入)不会。感谢。
import java.util.Scanner;
public class Lab6 {
public static void main (String [] args) {
Scanner in = new Scanner(System.in);
String phrase, l;
char letter;
while (true) {
System.out.println("Enter a phrase. Enter 'quit' to quit.");
phrase = in.nextLine();
if (phrase.startsWith("quit")) {
break;
}
System.out.println("Enter a letter");
l = in.next();
letter = l.charAt(0);
System.out.println("Phrase entered is: " + phrase);
System.out.println("Letter entered is: " + letter);
int i = 0;
int count = 0;
while (i < phrase.length()) {
if (phrase.charAt(i) == letter) {
count++;
}
i++;
}
System.out.println(count);
}
}
}
答案 0 :(得分:7)
原因是Scanner.next()
不使用系统输入中的换行符,因此输入将传递给语句:
phrase = in.nextLine();
现在不阻止收到输入。