string转为char
时间: 2023-07-28 14:38:01 浏览: 68
String和char互转1
可以使用string对象的c_str()方法将string对象转换为char*类型,例如:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "hello world";
const char* cstr = str.c_str();
cout << cstr << endl;
return 0;
}
```
输出结果为:
```
hello world
```
阅读全文