在C++中,字符串拼接有多種方法,包括使用+運算符、使用+=運算符、使用字符串拼接函數等等。
使用+運算符:
std::string str1 = "Hello";
std::string str2 = "World";
std::string result = str1 + " " + str2; // 字符串拼接
使用+=運算符:
std::string str1 = "Hello";
std::string str2 = "World";
str1 += " " + str2; // 將str2拼接到str1后面
使用字符串拼接函數:
char str1[100] = "Hello";
char str2[] = "World";
strcat(str1, " ");
strcat(str1, str2); // 字符串拼接
#include <sstream>
std::string str1 = "Hello";
std::string str2 = "World";
std::stringstream ss;
ss << str1 << " " << str2; // 字符串拼接
std::string result = ss.str();
需要注意的是,使用字符串拼接函數時,需要確保目標字符串的長度足夠長,以避免緩沖區溢出的問題。