我刚刚了解到,当按回车键以响应System.in.read()
时,会将以下字符放入控制台缓冲区\r\n
。因此,当我将以下1
输入到终端并按Enter键时,计算机将该语句读作1\r\n
。所以不应该System.out.println("hello")
两次被罚款?因为choice
会存储值1
。然后,将打印"hello"
。然后,ignore
将保留值\r
。然后,控件将被赋予while(ignore != '\n')
循环。然后,ignore
将保留值\n
。然后,将打印"hello"
。现在ignore = \n
,代码将突破循环?
class HelpClassDemo {
public static void main(String args[])
throws java.io.IOException {
char choice, ignore;
for(;;) {
do {
System.out.println("Help on:");
System.out.println(" 1. if");
System.out.println(" 2. switch");
System.out.println(" 3. for");
System.out.println(" 4. while");
System.out.println(" 5. do-while");
System.out.println(" 6. break");
System.out.println(" 7. continue\n");
System.out.print("Choose one (q to quit): ");
choice = (char) System.in.read();
do {
ignore = (char) System.in.read();
System.out.println("hello");
} while(ignore != '\n');
} while(choice < '1' | choice > '7' & choice != 'q');
if(choice == 'q') break;
}
}
}
答案 0 :(得分:1)
我认为代码是\r
(回车),\n
(新行)还是\r\n
取决于平台。
我在Windows机器上运行了你的代码,它确实打印了hello
两次。
您可能需要检查正在使用的计算机以及为该环境定义的行分隔符。有关详细信息,请参阅What are the differences between char literals '\n' and '\r' in Java?。
Help on:
1. if
2. switch
3. for
4. while
5. do-while
6. break
7. continue
Choose one (q to quit): 1
choice1
hello
hello