在C++中,可以使用string
类的append()
方法或者+
运算符来拼接字符串。下面分别演示了两种方法:
append()
方法拼接字符串:#include <string>
#include <iostream>
int main() {
std::string str1 = "Hello, ";
std::string str2 = "world!";
str1.append(str2);
std::cout << str1 << std::endl;
return 0;
}
+
运算符拼接字符串:#include <string>
#include <iostream>
int main() {
std::string str1 = "Hello, ";
std::string str2 = "world!";
std::string result = str1 + str2;
std::cout << result << std::endl;
return 0;
}
以上两种方法都可以用来拼接字符串,选择其中一种方法即可。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c++中itoa函数的用法是什么