c++ string类型变量
时间: 2023-09-02 11:15:52 浏览: 84
关于结构类型变量的使用说明以下几点:-C++完整版课件
在 C++ 中,可以使用 `std::string` 类型来表示字符串变量。这个类型定义在 `<string>` 头文件中,所以要先包含这个头文件。下面是一个字符串变量的示例:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, world!";
std::cout << str << std::endl;
return 0;
}
```
在这个例子中,我们定义了一个 `std::string` 类型的变量 `str`,并将其初始化为字符串 "Hello, world!"。然后我们使用 `std::cout` 输出这个字符串。
`std::string` 类型支持很多字符串操作,例如拼接、查找、替换等。可以参考相关文档来了解更多用法。
阅读全文