我有一段代码应该逐字读取输入并将单词的长度递归地添加到 ArrayList 中(用于学校练习)。
我写了这个方法:
ArrayList<Integer> wordLengths = new ArrayList<Integer>();
Scanner scanner = new Scanner(System.in);
// ...
private void readWords() {
// read a word, if there are more words, read the next word
this.wordLengths.add(this.scanner.next().length());
if (this.scanner.hasNext()) {
readWords();
}
}
当我调用这个方法时,它一直在询问新词。它不会停止(递归)循环。为什么会这样?this.scanner.hasNext()
只有当输入中有下一个单词时才应该是真的,所以当没有其他单词时它应该停止。