gpt4 book ai didi

c++ - std::cin 不会在输入错误时抛出异常

转载 作者:行者123 更新时间:2023-11-30 00:50:05 25 4
gpt4 key购买 nike

我只是想写一个简单的程序,从 cin 中读取,然后验证输入是一个整数。如果是这样,我将跳出我的 while 循环。如果没有,我将再次要求用户输入。

我的程序可以正常编译和运行,这太棒了。但是如果我输入一个非数值,它不会提示输入新的内容。给了什么?

#include <iostream>
using namespace std;

int main() {
bool flag = true;
int input;
while(flag){
try{
cout << "Please enter an integral value \n";
cin >> input;
if (!( input % 1 ) || input == 0){ break; }
}
catch (exception& e)
{ cout << "Please enter an integral value";
flag = true;}
}
cout << input;
return 0;
}

最佳答案

C++ iostreams 不使用异常,除非你告诉他们使用 cin.exceptions( /* conditions for exception */ ) .

但是你的代码流程无一异常(exception)的更自然。只需执行 if (!(cin >> input))

还记得在重试之前清除失败位。

整个事情可以是:

int main()
{
int input;
do {
cout << "Please enter an integral value \n";
cin.clear();
cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
} while(!(cin >> input));
cout << input;
return 0;
}

关于c++ - std::cin 不会在输入错误时抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26187729/

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