gpt4 book ai didi

c++ - 数字 vector 到十六进制格式的字符串

转载 作者:行者123 更新时间:2023-12-03 07:12:05 27 4
gpt4 key购买 nike

我创建了一个 vector std::vector<uint8_t> vec{ 0x0C, 0x14, 0x30 };

我想在字符串“0CD430”中返回 vector 的值。

我创建了这个简单的代码:

std::string vectorTostring(const std::vector<uint8_t>& vec)
{
std::string result;
for (const auto& v : vec)
{
result += std::to_string(v);
}
return result;
}

在这种情况下,结果将为“122048”。哇,十六进制值存储在字节 vector 中,为什么我使用 to_string 得到的是十进制值而不是十六进制值?

最佳答案

我建议使用 std::stringstream 和一些像这样的输出操纵器:

#include <sstream>
#include <iomanip>
#include <vector>
#include <string>
#include <iostream>

std::string vectorTostring(const std::vector<uint8_t>& vec)
{
std::stringstream result;
for (const auto& v : vec)
{
result
<< std::setfill('0') << std::setw(sizeof(v) * 2)
<< std::hex << +v;
}
return result.str();
}

int main()
{
std::cout << vectorTostring({ 0x0c, 0x14, 0x30 }) << std::endl;
}

以相反的顺序:

  • +vuint8_t/char 提升为 int,以便它输出值而不是ASCII 字符。
  • std::hex 使其以十六进制格式输出 - 但 11 变为 B 而不是 0B
  • std::setw(sizeof(v) * 2) 将输出宽度设置为 v 类型字节数的两倍 - 这里只是 1*2 .现在 11 变成了“B”。
  • std::setfill('0') 设置填充符为0,最后11变成0B。

关于c++ - 数字 vector 到十六进制格式的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64550908/

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