如何将十六进制字符串转换为无符号长整型?

发布于 2024-11-06 01:48:07 字数 118 浏览 0 评论 0原文

我有以下十六进制值

CString str;
str = T("FFF000");

如何将其转换为 unsigned long

I have following hex value

CString str;
str = T("FFF000");

How to convert this in to an unsigned long?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

赠我空喜 2024-11-13 01:48:07

您可以使用适用于常规 C 字符串的 strtol 函数。它使用指定的基数将字符串转换为长整型:

long l = strtol(str, NULL, 16);

详细信息和很好的示例:
http://www.cplusplus.com/reference/clibrary/cstdlib/strtol/

You can use strtol function which works on regular C strings. It converts a string to a long using a specified base:

long l = strtol(str, NULL, 16);

details and good example:
http://www.cplusplus.com/reference/clibrary/cstdlib/strtol/

只为一人 2024-11-13 01:48:07
#include <sstream>
#include <iostream>

int main()
{

    std::string s("0xFFF000");
    unsigned long value;
    std::istringstream iss(s);
    iss >> std::hex >> value;
    std::cout << value << std::endl;

    return 0;
}
#include <sstream>
#include <iostream>

int main()
{

    std::string s("0xFFF000");
    unsigned long value;
    std::istringstream iss(s);
    iss >> std::hex >> value;
    std::cout << value << std::endl;

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