在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
变量中。