c++ 如何将 十六进制字符串转换为十进制数字
可以使用以下方法将十六进制字符串转换为十进制数字:
- 将十六进制字符串转换为整数类型,可以使用 std::stoi 函数,例如:
std::string hexStr = "1A";
int decimalNum = std::stoi(hexStr, nullptr, 16);
- 如果需要使用 long long 类型,则需要使用 std::stoll 函数,例如:
std::string hexStr = "1A";
long long decimalNum = std::stoll(hexStr, nullptr, 16);
- 如果需要使用 unsigned long long 类型,则需要使用 std::stoull 函数,例如:
std::string hexStr = "1A";
unsigned long long decimalNum = std::stoull(hexStr, nullptr, 16);
原文地址: https://www.cveoy.top/t/topic/ebVd 著作权归作者所有。请勿转载和采集!