为什么当我放入时cin.clear()
程序cin.ignore()
完美运行,例如:我放入chars
并且程序没有错误。
但是当我把它cin.ignore()
放在第一位时cin.clear()
,程序不会停止发送错误信号。
这是如何运作的?
不应该删除输入并fail flag
取消设置吗?
#include <iostream>
using namespace std;
class time
{
private:
int hours;
public:
void getime()
{
do
{
cout << "Enter hours: ";
cin >> hours;
if ( hours < 0 || hours > 23 || cin.fail() )
{
cin.clear();
cin.ignore(10,'\n');
cerr << "invalid time, minutes must be between 0 and 59 " << endl;
}
}while(hours<0 || hours>23);
}
};
int main()
{
time asd;
asd.getime();
return 0;
}