在 C++ 中,你可以使用 std::string
庫中的函數來連接字符串。以下是一些常用的方法:
+
運算符連接字符串:#include <iostream>
#include <string>
int main() {
std::string str1 = "Hello, ";
std::string str2 = "World!";
std::string result = str1 + str2;
std::cout << result << std::endl; // 輸出 "Hello, World!"
return 0;
}
append()
函數連接字符串:#include <iostream>
#include <string>
int main() {
std::string str1 = "Hello, ";
std::string str2 = "World!";
std::string result = str1.append(str2);
std::cout << result << std::endl; // 輸出 "Hello, World!"
return 0;
}
std::stringstream
來連接字符串:#include <iostream>
#include <sstream>
#include <string>
int main() {
std::string str1 = "Hello, ";
std::string str2 = "World!";
std::stringstream ss;
ss << str1 << str2;
std::string result = ss.str();
std::cout << result << std::endl; // 輸出 "Hello, World!"
return 0;
}
以上三種方法都可以實現字符串的連接。你可以根據自己的需求和喜好選擇合適的方法。