gpt4 book ai didi

c++ - std::string 构造函数抛出 std::out_of_range 异常

转载 作者:太空狗 更新时间:2023-10-29 19:59:05 24 4
gpt4 key购买 nike

使用 VS 2012。

我在做刽子手。无论如何,我有一个函数可以得到一个 std::string ,它的长度与当前被猜测的单词相同,但用下划线填充。 (如空白)。

函数:

std::string getBlankWord(std::vector<std::string> words, int currentWordIndex)
{
return std::string(words[currentWordIndex], '_');
}

调用它的行:

currentGuessingString = getBlankWord(words, index);

words 是一个 std::vector,index 是一个 int。 words.size() = 22,并且 index = 0,所以我不知道在这种情况下,words[0] 是如何调用的。无论如何,这一行上的某些内容抛出 std::out_of_range 异常,但我找不到它。

谢谢。

最佳答案

我认为您在这里真正想要的更像是:

return std::string(words[currentWordIndex].size(), '_');

关于c++ - std::string 构造函数抛出 std::out_of_range 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15487879/

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