gpt4 book ai didi

c++ - 在字符串中存储多个十六进制值 C++

转载 作者:行者123 更新时间:2023-11-30 00:44:02 25 4
gpt4 key购买 nike

我想将一个整数数组转换为十六进制形式,然后将所有十六进制值连接成一个 C++ 字符串。整数最初是 uint8_t , 但我读到了如何将它们转换为 int没问题。到目前为止,我有这个。

for (int i = 0; i < HASHLEN; ++i) {
int a = static_cast< int >(hash2[i]); // convert the uint8_t to a int
cout << setfill('0') << setw(2) << hex << a; // print the hex value with the leading zero (important)
}

此代码在一行中打印数组中每个 int 的十六进制值,如下所示:

41a9ffb9588717989367b3ec942233d5d9a982f8658c1073a87262da43fd42c9

如何将此值存储为字符串?我尝试创建一个 string hash = "";在循环之前并使用这一行:

hash = hash + to_string(setfill('0') + setw(2) + hex + a);

而不是 cout行,但这不起作用。如果您想知道,错误是

error: invalid operands to binary expression ('__iom_t4<char>' and 'std::__1::__iom_t6')

最佳答案

std::stringstream 替换 cout将完成这项工作:

std::stringstream hexstr;
for (int i = 0; i < HASHLEN; ++i) {
int a = static_cast< int >(hash2[i]);
hexstr << setfill('0') << setw(2) << hex << a;
}
std::string res = hexstr.str();

关于c++ - 在字符串中存储多个十六进制值 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51252224/

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