我有一个 while 循环,它检测 sc.hasNext() 是否为真并接受输入的输入列表,将其一一添加到列表 textEditor 中。
while (sc.hasNext()) {
String line = sc.nextLine();
if (!(line.isEmpty())){
textEditor.addString(line);
}
}
sc.close();
textEditor.printAll();
}
}
但是,当我输入字符串列表时,例如
oneword
two words
Hello World
hello World
循环不会停止,并且不会调用 printAll() 方法。如何跳出while循环?
泛舟湖上清波郎朗
慕容3067478
相关分类