c++string装多个字符串
时间: 2023-08-20 07:09:58 浏览: 164
c++ string
在 C++ 中,你可以使用 `std::string` 类来装载多个字符串。有几种方法可以实现这个目的:
1. 使用 `+` 运算符来连接字符串:
```cpp
std::string result = "Hello";
result += " World";
result += "!";
```
2. 使用 `append()` 函数来连接字符串:
```cpp
std::string result = "Hello";
result.append(" World");
result.append("!");
```
3. 使用 `std::stringstream` 类来拼接字符串:
```cpp
#include <sstream>
std::stringstream ss;
ss << "Hello";
ss << " World";
ss << "!";
std::string result = ss.str();
```
4. 使用 `std::string` 的构造函数来连接字符串:
```cpp
std::string result = std::string("Hello") + " World" + "!";
```
无论你选择哪种方法,最终结果都会是 `result` 字符串包含了多个字符串的连接。
阅读全文