C++ string字符串拼接
时间: 2023-08-19 18:06:22 浏览: 230
拼接字符串
在 C++ 中,可以使用加号运算符(+)来进行字符串的拼接操作。C++ 提供了两种方法来实现字符串的拼接:
1. 使用加号运算符(+):
```cpp
std::string str1 = "Hello";
std::string str2 = " World";
std::string result = str1 + str2;
```
2. 使用 append() 函数:
```cpp
std::string str1 = "Hello";
std::string str2 = " World";
str1.append(str2);
```
这两种方法都可以实现字符串的拼接,你可以根据自己的需求选择其中一种方法。
阅读全文