streamstring在c++中的数据格式化方法

avatar
作者
筋斗云
阅读量:0

std::stringstream 是 C++ 标准库中的一个类,它位于 <sstream> 头文件中

以下是使用 std::stringstream 进行数据格式化的示例:

#include<iostream> #include <iomanip> // 包含设置输出格式的函数,如 setw, setprecision 等 #include <sstream> #include<string>  int main() {     int a = 123;     float b = 456.789f;      std::stringstream ss;      // 设置宽度为 10,右对齐,用空格填充     ss<< std::setw(10)<< std::right << a << "\n";      // 设置浮点数精度为 2 位小数     ss<< std::fixed<< std::setprecision(2);      // 设置宽度为 10,左对齐,用空格填充     ss<< std::setw(10)<< std::left << b << "\n";      std::string formatted_output = ss.str();     std::cout<< formatted_output;      return 0; } 

这段代码将输出:

      123 456.79 

在这个示例中,我们使用了 std::setwstd::right/std::left 来设置输出宽度和对齐方式。同时,我们使用了 std::fixedstd::setprecision 来设置浮点数的精度。最后,我们使用 ss.str() 方法获取格式化后的字符串。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!