std::string字符串拼接示例
时间: 2023-09-09 14:09:59 浏览: 155
1.字符串操作演示(Visual C++编程 源代码)
好的,以下是一个示例代码:
```c++
#include <iostream>
#include <string>
int main() {
std::string str1 = "Hello";
std::string str2 = "world!";
std::string result = str1 + " " + str2;
std::cout << result << std::endl; // 输出 "Hello world!"
return 0;
}
```
在该示例中,我们先定义了两个字符串 `str1` 和 `str2`,然后使用 `+` 运算符将它们拼接成一个新的字符串 `result`,最后打印出该结果。注意,在拼接过程中我们使用空格作为分隔符。
阅读全文