String.h怎样连接两个字符串

avatar
作者
筋斗云
阅读量:1

要连接两个字符串,可以使用以下几种方法:

  1. 使用加号运算符:
std::string str1 = "Hello"; std::string str2 = "World"; std::string result = str1 + str2; 
  1. 使用append()函数:
std::string str1 = "Hello"; std::string str2 = "World"; str1.append(str2); 
  1. 使用concatenate()函数:
std::string str1 = "Hello"; std::string str2 = "World"; str1.concatenate(str2); 

无论使用哪种方法,最终都会将两个字符串连接在一起并存储在一个新的字符串中。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!