gpt4 book ai didi

c++ - While循环中的C++ cin输入验证

转载 作者:行者123 更新时间:2023-12-02 10:33:08 24 4
gpt4 key购买 nike

除了一个小问题外,我的代码大部分都能正常工作。尽管它只应接受整数,但它也接受以整数开头的用户输入,例如6abc。我看到了针对此here的修复程序,但它将输入类型更改为字符串,并增加了很多代码行。我想知道是否有更简单的方法来解决此问题:

int ID;
cout << "Student ID: ";
// error check for integer IDs
while( !( cin >> ID )) {
cout << "Must input an integer ID." << endl ;
cin.clear() ;
cin.ignore( 123, '\n' ) ;
}

最佳答案

一句话-不。

但是,您可以做的是先将整个单词读入std::string,然后将整个单词转换成int,检查转换中是否存在错误,例如:

int ID;
string input;

do
{
cout << "Student ID: ";
if (!(cin >> input))
{
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
}
else
{
size_t pos = 0;
try
{
ID = stoi(input, &pos);
if (pos == input.size())
break;
}
catch (const std::exception &) {}
}
cout << "Must input an integer ID." << endl;
}
while (true);

Live Demo

关于c++ - While循环中的C++ cin输入验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61491822/

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