C++ std::string追加std::string
时间: 2023-07-06 11:27:05 浏览: 113
C++ STL std::string详细讲解
5星 · 资源好评率100%
当你需要将一个 `std::string` 对象追加到另一个 `std::string` 对象中时,你可以使用 `operator+=` 或者 `append` 方法。例如:
```cpp
std::string str1 = "Hello";
std::string str2 = " World!!!";
str1 += str2; // 使用 operator+= 方法
str1.append(str2); // 使用 append 方法
```
这样 `str1` 对象就会变成 `"Hello World!!!"`。
阅读全文