C++的string类型
时间: 2023-11-11 21:06:21 浏览: 64
C++中的string类
4星 · 用户满意度95%
C++的string类型是一个类,用于表示字符串。它可以动态地分配内存,可以方便地进行字符串的操作,如拼接、查找、替换等。
string类型的定义方式如下:
```c++
#include <string>
using namespace std;
string str = "hello world";
```
其中,`<string>`是头文件,`using namespace std;`是命名空间,`str`是定义的字符串变量。
阅读全文