string c++
时间: 2023-07-01 10:06:15 浏览: 92
string是C++标准库中的一个类,用于表示字符串。可以通过以下代码在程序中使用string:
```c++
#include <string> //包含string头文件
using namespace std;
int main()
{
string str = "hello world"; // 定义一个string对象
cout << str << endl; // 输出字符串
return 0;
}
```
除了基本的字符串操作外,string还提供了许多其他的操作,如查找、替换、子串等,具体可以参考C++标准库文档。
阅读全文