gpt4 book ai didi

c++ - 在 C++ 中将字符串转换为 unsigned long long

转载 作者:行者123 更新时间:2023-11-30 01:19:06 24 4
gpt4 key购买 nike

将字符串转换为 unsigned long long。

string str = "0x1232"

如何转换为 unsigned long long。

这是我试过的。

unsigned long long ull;
ull = stoull(str, NULL, 0);

错误:

 error: identifier "stoull" is undefined
ull = stoull(str, NULL, 0);

你能给我一些建议吗?

最佳答案

首先是strtoull (注意 r)。其次,它是一个旧的 C 风格函数,不能直接处理 std::string。您必须传递它 str.c_str() 或使用新的 std::stoull .

关于c++ - 在 C++ 中将字符串转换为 unsigned long long,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21422753/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com