在C++中,ostringstream是一个类,在头文件
ostringstream类继承自ostream类,它提供了一系列的成员函数,用于将不同类型的数据转换为字符串,并将其存储在一个缓冲区中。最后,可以通过调用str()函数来获取缓冲区中的字符串。
以下是ostringstream类的一些常用成员函数:
下面是一个示例代码,演示了ostringstream的用法:
#include <iostream>
#include <sstream>
int main() {
std::ostringstream oss;
int num = 10;
double pi = 3.14159;
std::string str = "Hello, world!";
oss << "Number: " << num << ", PI: " << pi << ", String: " << str;
std::string result = oss.str();
std::cout << result << std::endl;
return 0;
}
输出结果: Number: 10, PI: 3.14159, String: Hello, world!
在上面的示例中,我们首先创建了一个ostringstream对象oss。然后,使用插入运算符将整数、浮点数和字符串插入到oss对象中。最后,通过调用str()函数获取oss对象中的字符串,并将其存储到result变量中。最后,打印result变量的值,即可得到转换后的字符串。