c++字符串转数组的定义
时间: 2023-11-09 18:03:26 浏览: 76
c++ 字符串分割util
将C++字符串转换为数组的定义可以有多种方式,以下是其中一种:
```c++
#include <string>
#include <cstring>
int main() {
std::string str = "hello";
char arr[str.size() + 1];
strcpy(arr, str.c_str());
return 0;
}
```
在上面的代码中,我们首先定义了一个C++字符串`str`,然后通过`str.size()`获取字符串的长度,并在定义字符数组`arr`时将其长度加1,以便在末尾添加一个空字符'\0'。最后,我们使用`strcpy()`函数将字符串复制到字符数组中。
阅读全文