Go – 为什么这两个float64有不同的值?

前端之家收集整理的这篇文章主要介绍了Go – 为什么这两个float64有不同的值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
考虑这两种情况:
fmt.Println(912 * 0.01)
fmt.Println(float64(912) * 0.01)

(Go Playground link)

第二个打印9.120000000000001,其实是罚款,I understand why that is happening.

但是,为什么第一行打印9.12,最后没有… 01? Go是否乘以两个无类型的常量,并在编译时简单地用9.12字面替换它们?

解决方法

根据 spec

Constant expressions are always evaluated exactly; intermediate values and the constants themselves may require precision significantly larger than supported by any predeclared type in the language.

以来

912 * 0.01

是一个恒定的表达式,它被精确地评估.因此,写入fmt.Println(912 * 0.01)与写入fmt.Println(9.12)具有相同的效果.当将912定位到float64时,浮点乘法的另一个操作数也隐含地固定到float64.因此,float64(912)* 0.01的表达方式类似于float64(912)* float64(0.01). 0.01在float64中不能精确表示,因此在与第一个例子中fmt.Println()的参数中出现的表达式float64(912 * 0.01)不同的地方,精度会丢失,解释不同的结果.

原文链接:https://www.f2er.com/css/214346.html

猜你在找的CSS相关文章