gpt4 book ai didi

c++ - std::cin 错误输入的无限循环

转载 作者:太空狗 更新时间:2023-10-29 21:00:03 24 4
gpt4 key购买 nike

在我的以下代码中,我想循环直到用户提供正确的输入。但是当我尝试时,它变成了一个不间断的循环。
请输入有效的输入。
没有 while 循环也是一样的。

这里有 while 循环:

#include <iostream>
#include <fstream>
#include <string>
#include <ctime>
#include <sstream>
using namespace std;

class library {
public:
library() {
int mainOption;

cout<<"Please choose the option you want to perform."<<endl;
cout<<"1. Member Section"<<"\n"<<"2. Books, Lending & Donate Section"<<"\n"<<"3. Returning Section"<<endl;
bool option=true;
while (option==true) {
cin>>mainOption;
if (mainOption==1) {
cout<<"section 1"<<endl;
option=false;
} else if (mainOption==2) {
cout<<"section 1"<<endl;
option=false;
} else if (mainOption==3) {
cout<<"section 1"<<endl;
option=false;
} else {
cout<<"Please Enter Valid Input. "<<endl;
//option still true. so it should ask user input again right?
}
}
}
};

int main(int argc, const char * argv[])
{
library l1;
return 0;
}

这里没有 while 循环。但同样的事情发生了。

#include <iostream>
#include <fstream>
#include <string>
#include <ctime>
#include <sstream>
using namespace std;

class library {
public:
library() {
int mainOption;

cout<<"Please choose the option you want to perform."<<endl;
cout<<"1. Member Section"<<"\n"<<"2. Books, Lending & Donate Section"<<"\n"<<"3. Returning Section"<<endl;

cin>>mainOption;
if (mainOption==1) {
cout<<"section 1"<<endl;
} else if (mainOption==2) {
cout<<"section 1"<<endl;
} else if (mainOption==3) {
cout<<"section 1"<<endl;
} else {
cout<<"Please Enter Valid Input. "<<endl;
library();//Calling library function again to input again.
}
}
};

int main(int argc, const char * argv[])
{
library l1;
return 0;
}

最佳答案

问题是当你调用

cin>>mainOption; // mainOption is an int

但用户没有输入intcin 将输入缓冲区保留在旧状态。除非您的代码使用输入的无效部分,否则最终用户输入的错误值将保留在缓冲区中,从而导致无限重复。

这是解决此问题的方法:

} else {
cout<<"Please Enter Valid Input. "<<endl;
cin.clear(); // Clear the error state
string discard;
getline(cin, discard); // Read and discard the next line
// option remains true, so the loop continues
}

请注意,我还删除了递归,因为您的 while 循环足以处理手头的任务。

关于c++ - std::cin 错误输入的无限循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23162950/

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