在整个文件范围内设置 std::cout 的精度 - C++伊奥马尼普
我正在做一些计算,结果保存在文件中。我必须输出非常精确的结果,接近双精度变量的精度,为此我使用 iomanip set precision(int) 。问题是我必须将 set precision 放在输出中的任何位置,如下所示:
func1() {
cout<<setprecision(12)<<value;
cout<<setprecision(10)<<value2;
}
func2() {
cout<<setprecision(17)<<value4;
cout<<setprecision(3)<<value42;
}
这非常麻烦。有没有办法更普遍地设置 cout 固定修饰符?
谢谢
I'm doing some calculations, and the results are being save in a file. I have to output very precise results, near the precision of the double variable, and I'm using the iomanip setprecision(int) for that. The problem is that I have to put the setprecision everywhere in the output, like that:
func1() {
cout<<setprecision(12)<<value;
cout<<setprecision(10)<<value2;
}
func2() {
cout<<setprecision(17)<<value4;
cout<<setprecision(3)<<value42;
}
And that is very cumbersome. Is there a way to set more generally the cout fixed modifier?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否在寻找 cout. precision ?
Are you looking for cout.precision ?
在 C++20 中,您将能够使用
std:: format
默认情况下为您提供最短的十进制表示形式,因此即使您不手动指定它也不会丢失精度。例如:prints
如果您需要固定精度,您可以将其存储在变量中并在多个位置重复使用:
In C++20 you'll be able to use
std::format
which gives you shortest decimal representation by default, so you won't loose precision even if you don't specify it manually. For example:prints
If you need a fixed precision you can store it in a variable and reuse in multiple places: