c++ 将两个字符串合并
时间: 2023-12-24 08:02:02 浏览: 113
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;
return 0;
}
```
输出结果为:
```
Hello World
```
以下是使用 `append()` 函数的示例代码:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str1 = "Hello";
string str2 = "World";
str1.append(" ");
str1.append(str2);
cout << str1 << endl;
return 0;
}
```
输出结果为:
```
Hello World
```
阅读全文