1

在用作模板参数的类的成员函数中,我有一个包含以下代码的函数:

double x = /*Something operation returning double*/;
x /= CubeWidth; /*CubeWidth is a class member*/
cout << "Element after centering and normalization = " << x << endl;
cout << "and after adding 1 and truncating = " << x+1 << endl;
cout << "then static cast = " << (int) x+1 << endl;

这个函数的输出是

Element after centering and normalization = 1
and after adding 1 and truncating = 2
then static cast = 1

显然,最后一行应该给出答案 2。

如果我实例化完全相同的类而不使用它作为模板参数,我不会得到这个打印输出,而是我有正确的一个。

谁能告诉我为什么会这样?

4

1 回答 1

3

最有可能x(a double) 不完全是1,它是0.9999999...。通过打印x==1.0或检查它的确切值x<1.0,看看什么是真的。或者在输出中添加更多数字:

cout << "and after adding 1 and truncating = " << setprecision( 15 ) << x+1 << endl;

舍入为整数将丢弃逗号后的所有数字,因此1.999999...变为1.

于 2013-10-29T17:40:27.737 回答