我有一个与stackoverflow std::cin.clear() failed to restore input stream in a good state上的这个问题有点相似的问题,但是那里提供的答案对我不起作用。
问题是:如何再次将流的状态重置为“好”?
这是我的代码我如何尝试它,但状态永远不会再次设置为好。我分别使用了两条线忽略。
int _tmain(int argc, _TCHAR* argv[])
{
int result;
while ( std::cin.good() )
{
std::cout << "Choose a number: ";
std::cin >> result;
// Check if input is valid
if (std::cin.bad())
{
throw std::runtime_error("IO stream corrupted");
}
else if (std::cin.fail())
{
std::cerr << "Invalid input: input must be a number." << std::endl;
std::cin.clear(std::istream::failbit);
std::cin.ignore();
std::cin.ignore(INT_MAX,'\n');
continue;
}
else
{
std::cout << "You input the number: " << result << std::endl;
}
}
return 0;
}