我正在尝试将数值写入与列对齐的文本文件中。我的代码如下所示:
ofstream file;
file.open("try.txt", ios::app);
file << num << "\t" << max << "\t" << mean << "\t << a << "\n";
它有效,除非值的位数不同,否则它们不会对齐。我想要的是以下内容:
1.234567 -> 1.234
1.234 -> 1.234
1.2 -> 1.200
这取决于你想要什么格式。对于固定的小数位,例如:
class FFmt
{
int myWidth;
int myPrecision;
public:
FFmt( int width, int precision )
: myWidth( width )
, myPrecision( precision )
{
}
friend std::ostream& operator<<(
std::ostream& dest,
FFmt const& fmt )
{
dest.setf( std::ios::fixed, std::ios::floatfield );
dest.precision( myPrecision );
dest.width( myWidth );
}
};
应该做的伎俩,所以你可以写:
file << nume << '\t' << FFmt( 8, 2 ) << max ...
(或您想要的任何宽度和精度)。
如果你正在做任何浮点工作,你可能应该在你的工具包中拥有这样一个操纵器(尽管在许多情况下,使用逻辑操纵器会更合适,以它格式化的数据的逻辑含义命名,例如度数、距离等)。
恕我直言,扩展操纵器也是值得的,以便它们保存格式化状态,并在完整表达式的末尾恢复它。(我所有的操纵器都派生自处理此问题的基类。)
您需要先更改精度。
这里有一个很好的例子。
方法与使用时相同cout
。看到这个答案。