在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;
return 0;
}
在上面的例子中,我們使用"+"操作符將兩個字符串str1和str2拼接在一起,并將結果存儲在result變量中。最后,使用cout輸出結果。