我最近遇到了这个与cout.setf(ios :: fixed)有关的奇怪问题。我花了很长时间来追查原因,并想到我在这里要求了解更多。
问题是这个 - 当使用cout.setf(ios :: fixed)时,所有浮点数都打印为十六进制数字。为什么会这样? ios :: base的文档似乎并不意味着会发生这种情况(至少对我而言)。我使用g ++ 5.3.0并在下面粘贴是一个最小的例子和输出。
#include <iostream>
#include <complex>
using namespace std;
int main(int argc, char const *argv[])
{
complex<double> I(0.0, 1.0);
double pi = M_PI;
cout.setf(ios::scientific);
cout<<" I is "<<I<<endl;
cout<<" Exp(I Pi) "<<exp(I*pi)<<endl;
cout<<" Cos(Pi) "<<cos(pi)<<endl<<endl;
cout.setf(ios::fixed);
cout<<" I is "<<I<<endl;
cout<<" Exp(I Pi) "<<exp(I*pi)<<endl;
cout<<" Cos(Pi) "<<cos(pi)<<endl<<endl;
return 0;
}
输出
I is (0.000000e+00,1.000000e+00)
Exp(I Pi) (-1.000000e+00,1.224647e-16)
Cos(Pi) -1.000000e+00
I is (0x0p+0,0x1p+0)
Exp(I Pi) (-0x1p+0,0x1.1a62633145c07p-53)
Cos(Pi) -0x1p+0
请注意,当我更改
时问题就会消失 cout.setf(ios::fixed);
到
cout.setf(ios::fixed, ios::floatfield);
答案 0 :(得分:7)
因为你说过了。
来自setf
documentation on cppreference.com:
科学 - 使用科学记数法生成浮点类型,或者如果与固定值结合使用十六进制表示法:请参阅
std::scientific
已修复 - 使用固定表示法生成浮点类型,如果与科学结合使用,则生成十六进制表示法:请参阅std::fixed
因此,在设置std::fixed
时,您需要取消设置std::scientific
(这是std::floatfield
取消屏蔽的内容,因为std::floatfield
是std::scientific|std::fixed|(std::scientific|std::fixed)|0
)避免使用十六进制表示法。