gpt4 book ai didi

java - 添加到 vector 后中断 for 循环

转载 作者:行者123 更新时间:2023-12-02 05:55:09 26 4
gpt4 key购买 nike

我的程序的目标是要求用户输入一个句子,然后在使用 vector 时反转该句子中的单词。

import java.io.*;
import java.util.*;

public class ReverseVector {

public static void main(String []args){

Scanner scan = new Scanner(System.in);
Vector<String> vec =new Vector<String>();
String word = "";

System.out.print("Enter a sentence :");

for(int i=0;i<=vec.size();i++){
word=scan.next();
vec.add(word); //adding each word to an element.
}

Collections.reverse(vec);
System.out.println(vec);
}
}

我正在寻找有关如何在所有单词都添加到 vector 后摆脱for循环的建议。我的想法是某种if语句,它表明如果没有更多的单词可以添加到 vector 中,则中断。

程序应该执行以下操作:

Enter a sentence: The bird flew high

输出:

high flew bird The

最佳答案

一种方法是使用 scan.nextLine()读取整行;这本质上是使用“换行符”来指示句子的结尾。

现在您将拥有一个包含整个句子的String。然后您可以将字符串拆分为单词,例如String.split() :

String sentence = scan.nextLine();
String[] words = sentence.split("\\s+"); // <= sequence of one or more whitespace

for (String word : words)
vec.add(word);

如果您想远离regular expressions,您还可以使用第二个扫描仪来读取句子字符串中的单词。 String.split(),例如:

String sentence = scan.nextLine();
Scanner sentenceScan = new Scanner(sentence);

while (sentenceScan.hasNext())
vec.add(sentenceScan.next());

关键是hasNext()。您可能想在原始扫描仪上使用 scan.hasNext() ,但不幸的是,这不会完成工作,因为 hasNext() 将继续返回 true 直到到达输入的文件结尾(并且换行输入不是文件结尾)。

顺便说一句,请注意您的原始代码:

for(int i=0;i<=vec.size();i++)

此处,vec.size() 最初为 0,因此该循环永远不会执行。与数组相比,使用动态大小的容器(例如 Vector)的优点之一是您可以根据需要向其中添加元素。因此,不要循环到 vec.size() ,无论如何都无法提前知道(您不知道将输入多少个单词),而是循环遍历所有输入单词,然后add() 将它们添加到 vector 中。

<小时/>

尝试按照注释中的要求分解第二个示例中的 while 循环。这个 while 循环:

while (sentenceScan.hasNext())
vec.add(sentenceScan.next());

本质上,这是英语句子的直接翻译:“当还有更多单词时,获取下一个单词并将其添加到 vec 中。”当您的代码清楚地反射(reflect)您的意图时,这总是好的,但我们可以将其稍微分解一下,看看它是如何工作的:

我们知道以下内容:

  • while (condition)条件时循环。
  • sentenceScan.hasNext()如果它可以从句子中获取另一个单词,则返回true,如果它不能(即,如果到达句子字符串的末尾)。
  • sentenceScan.next()将从句子字符串中读取下一个单词并返回它。在内部,扫描仪在读取该单词时会移过该单词(它会在幕后跟踪其在句子字符串中的当前位置)。因此,每次您调用 next() 时,它都会有效地从字符串中获取下一个单词并“消耗”该单词,因此下次您调用 next() 时,它会得到下面这个词。如果您尝试在没有更多单词时调用 next(),它将引发异常(请参阅链接文档)。
  • vec.add(...)当然,将任何内容附加到 Vector 的末尾。

所以让我们像这样扩展它:

while (true) { // loop "forever", since we don't know when we'll stop
if (!sentenceScan.hasNext()) // if there are no more words...
break; // ...get the heck out of this loop!
String word = sentenceScan.next(); // get next word from scanner
vec.add(word); // add that word to the vector
}

为了简洁起见,我们可以跳过一些步骤,例如,我们实际上并不需要那个word变量,因为我们只在一个地方使用它,所以:

while (true) { // loop "forever", since we don't know when we'll stop
if (!sentenceScan.hasNext()) // if there are no more words...
break; // ...get the heck out of this loop!
// get next word from scanner and add it to vector, in one fell swoop:
vec.add(sentenceScan.next());
}

由于我们跳出循环的条件很简单,在循环开始时,并且基于 boolean 值,我们可以将其设为实际的循环条件:

while (sentenceScan.hasNext()) { // loop until there are no more words
// get next word from scanner and add it to vector:
vec.add(sentenceScan.next());
}

因此我们得到了第二个示例中的循环。希望这是有道理的!

关于java - 添加到 vector 后中断 for 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23173367/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com