在C++中,要在一行中连接多个字符串可以使用字符串拼接操作符"+"或者使用字符串拼接函数"strcat"。
#include <iostream>
#include <string>
int main() {
std::string str1 = "Hello";
std::string str2 = " World";
std::string str3 = "!";
std::string result = str1 + str2 + str3;
std::cout << result << std::endl;
return 0;
}
上述代码中,使用"+"操作符将字符串str1、str2和str3连接在一起,最终输出结果为"Hello World!"。
#include <iostream>
#include <cstring>
int main() {
char str1[] = "Hello";
char str2[] = " World";
char str3[] = "!";
strcat(str1, str2);
strcat(str1, str3);
std::cout << str1 << std::endl;
return 0;
}
上述代码中,使用"strcat"函数将字符串str1、str2和str3连接在一起,最终输出结果为"Hello World!"。
注意事项:
对于腾讯云相关产品和产品介绍链接地址,请参考腾讯云官方网站获取最新信息。
领取专属 10元无门槛券
手把手带您无忧上云