可以通过判断读入的行是否是空行来决定是否跳出循环,比如
Scanner sc=new Scanner(System.in);
String s;
while(sc.hasNextLine()){
s=sc.nextLine();
if(s.equals("") break;
//do something
}
注意while循环的条件sc.hasNextLine()不要写成sc.hasNext()。
这样,在读到空行的时候就会退出循环,结束输入,也比较符合常用的使用场景。
可以通过判断读入的行是否是空行来决定是否跳出循环,比如
Scanner sc=new Scanner(System.in);
String s;
while(sc.hasNextLine()){
s=sc.nextLine();
if(s.equals("") break;
//do something
}
注意while循环的条件sc.hasNextLine()不要写成sc.hasNext()。
这样,在读到空行的时候就会退出循环,结束输入,也比较符合常用的使用场景。