在摘录
中for(;;) {
std::cout << "Please enter an integer: ";
if(std::cin >> nInput) {
return nInput;
}
else {
std::cout << "Invalid input! Please enter an integer!\n";
std::cin.clear();
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
}
}
cin会将字符串的开头指定给nInput
,前提是至少第一个字符是数字。例如,这是我的一些控制台输出:
Please enter an integer: 10
Please enter an integer: foo
Invalid input! Please enter an integer!
Please enter an integer: 20bar //this will return 20, leave "bar" in the stream. Until the next cin call, cin.good() returns true
Please enter an integer: Invalid input! Please enter an integer! //fails because "bar is in the stream"
Please enter an integer: -1
当用户输入“20bar”时,如何检查保持cin不返回“20”?或者,我如何检查cin缓冲区中的更多内容?
答案 0 :(得分:2)
在这种情况下,您应该将数据读入std::string
,然后检查字符串以查看您是否有有效输入。 cin >>
非常满意20anything_here
作为整数类型的输入,因为它只是在找到非整数部分时停止读取。
解析字符串并确定它符合您的要求后,您可以使用std::stoi
将字符串转换为int
答案 1 :(得分:1)
一种选择是读取数字后跟一个字符。以下字符是'\n'
,这意味着他们之后没有输入任何数字:
if ( (std::cin >> nInput) && std::cin.get() == '\n' )