c++string 字符串加法
时间: 2024-05-26 22:06:48 浏览: 221
C++实现的字符串加一操作
5星 · 资源好评率100%
在C++中,可以使用"+"运算符来进行字符串的加法操作。C++中的字符串类型是std::string,它提供了重载的"+"运算符,可以用于连接两个字符串。
下面是一个示例代码,演示了如何进行字符串的加法操作:
```cpp
#include <iostream>
#include <string>
int main() {
std::string str1 = "Hello";
std::string str2 = " World!";
std::string result = str1 + str2;
std::cout << result << std::endl;
return 0;
}
```
在上面的代码中,我们定义了两个字符串str1和str2,分别初始化为"Hello"和" World!"。然后使用"+"运算符将它们连接起来,并将结果保存在result变量中。最后,使用std::cout输出result的值,即"Hello World!"。
需要注意的是,C++中的std::string类型已经封装了字符串的操作,包括字符串的连接、截取、查找等功能,因此可以方便地进行字符串的处理。
阅读全文