gpt4 book ai didi

c++ - 无法弄清楚为什么 while 循环是无限的

转载 作者:行者123 更新时间:2023-11-28 01:21:38 25 4
gpt4 key购买 nike

我的代码使用了我认为简单的 while 循环。它检查 randCard 是否已经存在于我拥有的 vector 中,如果存在,则创建一个新的 randCard

我在循环中添加了 cout 语句,试图找到它正在运行的进程,并发现它只在 while 循环中运行,没有嵌套的 for 循环。问题如下:

    bool isSame = true;


//Make sure they don't be the same cards

while (isSame){
cout << "While entered" << endl;
for(int i = 0; i < notToUse.size(); i++){
if(randCard == notToUse.at(i)){
randCard = rand() % 24;

}
cout << "First for ran" << endl;
}
for (int i = 0; i < notToUse.size(); i++){
if (randCard == notToUse.at(i)){
cout << "Recheck loop" << endl;
break;
}
else{
cout << "Else ran" << endl;
isSame = false;
}
}
}

randCard 来自一类 Cards 类型。 vector notToUse 由已经使用过的卡片索引组成。结束 cout 语句最终看起来像:

While entered
While entered
While entered
While entered
While entered

似乎甚至没有访问 for 循环。我该如何解决这个问题?

最佳答案

对于可能偶然发现此问题的任何人,答案已在评论中解决。 vector 的大小为 0,因此 for 循环甚至没有运行。

关于c++ - 无法弄清楚为什么 while 循环是无限的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55961241/

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