golang踩坑之floa64精度丢失

Posted chenqionghe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang踩坑之floa64精度丢失相关的知识,希望对你有一定的参考价值。

问题:19.90转为float64类型,再乘以100,精度丢失

废话不说多,show you the code

package main

import (
    "fmt"
    "strconv"
)

func main() {
    num, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", 19.90), 64)
    fmt.Println(num)
    fmt.Println(num * 100)
}

运行输出

19.9
1989.9999999999998

19.9转成float64后,再乘以100,居然变成了1989.9999999999998
这个精度的问题要是出现在现金的问题上就厉害了!

解决

使用包的decimal类型:github.com/shopspring/decimal

代码改为如下

package main

import (
    "fmt"
    "github.com/shopspring/decimal"
    "strconv"
)

func main() {
    num, _ := strconv.ParseFloat(fmt.Sprintf("%.8f", 19.90), 64)
    fmt.Println(num)

    decimalValue := decimal.NewFromFloat(num)
    decimalValue = decimalValue.Mul(decimal.NewFromInt(100))

    res,_ := decimalValue.Float64()
    fmt.Println(res)
}

运行输出

19.9
1990

以上是关于golang踩坑之floa64精度丢失的主要内容,如果未能解决你的问题,请参考以下文章

雪花算法踩坑 - Long 类型 id 返回前端精度丢失 (通过序列化解决)

雪花算法踩坑 - Long 类型 id 返回前端精度丢失 (通过序列化解决)

雪花算法踩坑 - Long 类型 id 返回前端精度丢失 (通过序列化解决)

vscode踩坑之配置eslint

Kotlin易踩坑之委托的使用

Kotlin易踩坑之委托的使用