gpt4 book ai didi

c++ - 从 float 到 double 和从 double 到 float 的精度损失?

转载 作者:可可西里 更新时间:2023-11-01 16:30:05 25 4
gpt4 key购买 nike

float fv = orginal_value;  // original_value may be any float value
...
double dv = (double)fv;
...
fv = (float)dv;

fv 应该等于 original_value 吗?任何精度都可能丢失?

最佳答案

SHOULD fv be equal to original_value exactly? Any precision may be lost?

是的,如果 dv 的值在两者之间没有变化。

来自 C99 规范中的 Conversion 6.3.1.5 Real Floating types 部分:

  1. When a float is promoted to double or long double, or a double is promoted to long double, its value is unchanged.
  2. When a double is demoted to float, a long double is demoted to double or float, or a value being represented in greater precision and range than required by its semantic type (see 6.3.1.8) is explicitly converted to its semantic type, if the value being converted can be represented exactly in the new type, it is unchanged. If the value being converted is in the range of values that can be represented but cannot be represented exactly, the result is either the nearest higher or nearest lower representable value, chosen in an implementation-defined manner. If the value being converted is outside the range of values that can be represented, the behavior is undefined

对于 C++,来自 4.6 部分又名 conv.fpprom(使用的草案:n337 我相信最终规范中有类似的行)

A prvalue of type float can be converted to a prvalue of type double. The value is unchanged. This conversion is called floating point promotion.

4.8 部分又名 conv.double

A prvalue of floating point type can be converted to a prvalue of another floating point type. If the source value can be exactly represented in the destination type, the result of the conversion is that exact representation. If the source value is between two adjacent destination values, the result of the conversion is an implementation-defined choice of either of those values. Otherwise, the behavior is undefined. The conversions allowed as floating point promotions are excluded from the set of floating point conversions

因此值应该完全相等。

关于c++ - 从 float 到 double 和从 double 到 float 的精度损失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36840173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com