c++ 字符串转成byte数组
时间: 2023-10-12 12:15:57 浏览: 371
C++字符串完全指引
可以使用以下代码将 C 字符串转成 byte 数组:
```c
char str[] = "example";
int len = strlen(str);
unsigned char bytes[len];
memcpy(bytes, str, len);
```
其中,`strlen` 函数用于获取字符串的长度,`memcpy` 函数用于将字符串复制到 byte 数组中。
阅读全文