如何使用 std::cin 验证十六进制输入?

发布于 2024-10-24 10:10:17 字数 480 浏览 1 评论 0原文

我执行了以下方法,如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泪是无色的血 2024-10-31 10:10:17

我想我会做这样的事情:

std::getline(cin, your_string);

if (your_string.find_first_not_of("0123456789abcdefABCDEF") != std::string::npos)
    error("Non-hexadecimal input");
else {
    std::istringstream is(your_string);
    is >> std::hex >> address1;
}

有很多变化,但我遵循的三个步骤是:

  1. 读取整行,
  2. 验证它
  3. 是否可以转换。

I guess I'd do something like this:

std::getline(cin, your_string);

if (your_string.find_first_not_of("0123456789abcdefABCDEF") != std::string::npos)
    error("Non-hexadecimal input");
else {
    std::istringstream is(your_string);
    is >> std::hex >> address1;
}

There are a lot of variations, but the three steps I'd follow would be:

  1. read the whole line,
  2. validate it
  3. convert if good.
暮色兮凉城 2024-10-31 10:10:17

使用 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文