在这个站点C++ int to byte array的帮助下,我有一个代码将int序列化为字节流。
来自整数值1234的字节流数据是大端格式的'\ x00 \ x00 \ x04 \ xd2',我需要提供一个实用程序函数来显示字节流。这是我的第一个版本。
#include <iostream>
#include <vector>
using namespace std;
std::vector<unsigned char> intToBytes(int value)
{
std::vector<unsigned char> result;
result.push_back(value >> 24);
result.push_back(value >> 16);
result.push_back(value >> 8);
result.push_back(value );
return result;
}
void print(const std::vector<unsigned char> input)
{
for (auto val : input)
cout << val; // <--
}
int main(int argc, char *argv[]) {
std::vector<unsigned char> st(intToBytes(1234));
print(st);
}
如何在十进制和十六进制的屏幕上获得正确的值?
答案 0 :(得分:4)
对于hex:
for (auto val : input) printf("\\x%.2x", val);
对于十进制:
for (auto val : input) printf("%d ", val);