stackoverflow std::cin.clear() fails 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;
}