如何将uint8数组转换为char *

时间:2018-08-15 08:00:50

标签: c++ serialization

我有一组uint8:

uInt8 data1[88];

我想将其转换为字节数组(char *)。我尝试过

char * temp = reinterpret_cast<char*>(data1);

适用于double[],但是输出中没有数据,并且strlen(temp)为0。我打印了data1的所有元素,但它为空,当我将其元素转换为字符串时(使用{ {1}}),将显示0和1。

我该如何解决问题?

0 个答案:

没有答案