我有一个函数,我想读取整数,直到我输入一个非整数。我想重复这个功能,直到我按下回车键。但是角色被传递到第二个cin并且它变成了无限循环。
void read () {
int x;
while ( cin >> x );
}
int main () {
char a;
do {
read ();
cin.ignore (256, '\n')
cin >> a;
} while ( a != '\n' )
}
答案 0 :(得分:2)
1)您忘记删除std::cin
中的失败位;使用clear()
2)检测空输入,我建议使用std::string
和std::getline()
我建议像
#include <iostream>
#include <string>
void read () {
int x;
while ( std::cin >> x ) ;
std::cin.clear();
std::cin.ignore(std::numeric_limits<int>::max(), '\n');
}
int main () {
std::string b;
do {
read();
std::getline(std::cin, b);
} while ( false == b.empty() );
return 0;
}