在C++中,可以使用+
操作符或+=
操作符將兩個字符串連接起來。下面是使用這兩種方法的示例代碼:
#include <iostream>
#include <string>
int main() {
std::string str1 = "Hello";
std::string str2 = " World";
// 使用+操作符
std::string result = str1 + str2;
std::cout << "Result using + operator: " << result << std::endl;
// 使用+=操作符
str1 += str2;
std::cout << "Result using += operator: " << str1 << std::endl;
return 0;
}
輸出:
Result using + operator: Hello World
Result using += operator: Hello World
在上面的示例中,我們先定義了兩個字符串str1
和str2
,然后使用+
操作符將它們連接起來并將結果賦值給result
字符串。接下來,我們使用+=
操作符將str2
連接到str1
后面。最后,我們分別使用+
和+=
操作符的結果輸出連接后的字符串。