如何使用 std::cin 验证十六进制输入?
我执行了以下方法,如 http://www.parashift.com/ c++-faq-lite/input-output.html 来验证,但它不起作用:
if (!(cin >> hex >>address1))
{
cout << "Invalid input.";
std::cin.clear();
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
}
它不断将剩余的输入携带到下一个输入,从而使用户无法输入下一个输入,甚至是 std ::cin 被清除并忽略。
I did the following method as in http://www.parashift.com/c++-faq-lite/input-output.html to validate, but it does not work:
if (!(cin >> hex >>address1))
{
cout << "Invalid input.";
std::cin.clear();
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
}
It keeps carrying the remaining input to the next input, thus making the next input cannot be typed in by user, even the std::cin is cleared and ignored.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想我会做这样的事情:
有很多变化,但我遵循的三个步骤是:
I guess I'd do something like this:
There are a lot of variations, but the three steps I'd follow would be:
使用 getline() 获取输入并逐步遍历字符串,确保只有数字和字母 AF(可能还有前导 0x)
Grab the input using
getline()
and step through the string, making sure there are only digits and the letters A-F (and perhaps a leading 0x)