c++ byte转string
时间: 2023-11-23 18:07:10 浏览: 315
C# 与 C++ 数据类型比较及结构体转换
3星 · 编辑精心推荐
可以使用stringstream将byte转换为string,示例代码如下:
```c++
#include <iostream>
#include <sstream>
int main() {
unsigned char byte = 0xAB;
std::stringstream ss;
ss << std::hex << static_cast<int>(byte);
std::string result(ss.str());
std::cout << result << std::endl;
return 0;
}
```
输出结果为:ab
阅读全文