C++中string字符串的拼接
时间: 2023-08-08 17:09:50 浏览: 93
字符串的拼接(C语言代码)
在C++中,可以使用 + 运算符或者 append() 方法来实现字符串的拼接。例如:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str1 = "hello";
string str2 = "world";
string str3 = str1 + " " + str2; // 使用 + 运算符拼接
cout << str3 << endl;
str1.append(" "); // 使用 append() 方法拼接
str1.append(str2);
cout << str1 << endl;
return 0;
}
```
输出结果为:
```
hello world
hello world
```
阅读全文