在C++中,你可以使用std::stringstream
來實現字符串拼接。下面是一個簡單的示例:
#include <iostream>
#include <sstream>
#include <string>
int main() {
std::stringstream ss;
// 拼接字符串
ss << "Hello, " << "World!" << std::endl;
// 從stringstream中獲取拼接后的字符串
std::string result = ss.str();
// 輸出結果
std::cout << result << std::endl;
return 0;
}
在這個示例中,我們創建了一個std::stringstream
對象ss
,然后使用<<
操作符將字符串拼接在一起。最后,我們使用str()
方法從stringstream
對象中獲取拼接后的字符串,并將其存儲在result
變量中。