c语音 char数组转string
时间: 2023-09-27 10:08:33 浏览: 61
C语言中char型转string
3星 · 编辑精心推荐
可以使用C++中的string类来实现char数组转string。具体方法如下:
1. 引入头文件
```cpp
#include <string>
```
2. 定义char数组
```cpp
char str[10] = "hello";
```
3. 使用string类的构造函数将char数组转为string
```cpp
std::string s(str);
```
完整代码如下:
```cpp
#include <string>
#include <iostream>
int main()
{
char str[10] = "hello";
std::string s(str);
std::cout << s << std::endl;
return 0;
}
```
输出结果为:
```
hello
```
阅读全文