如何在go中很好地显示浮点数

时间:2018-02-16 13:42:11

标签: go floating-point

我希望能够显示使用math/big创建的非常大的浮点数。

  • 如果没有小数,则不应添加.000
  • 仅添加必要的小数位数(显示1.1234而不是1.123400
  • 精确度很高(几十个精确的小数)

https://play.golang.org/p/CulS5wXxzGq

coef := new(big.Float).SetPrec(4096)
coef.SetString("1000000000000000")
a := new(big.Float).SetPrec(4096)
a.SetString("1")
a.Quo(a, coef)
fmt.Printf("%.100g\n", a)
// 1e-15
// was expecting: 0.000000000000001

b := new(big.Float).SetPrec(4096)
b.SetString("1234.00")
fmt.Printf("%.100g\n", b)
// 1234.00
// looks good

c := new(big.Float).SetPrec(4096)
c.SetString("1234.001000")
fmt.Printf("%.100g\n", c)
// 1234.001000
// looks good

1 个答案:

答案 0 :(得分:2)

我认为big.Float func format(x *big.Float) string { return x.Text('f', -1) } 方法符合您的要求。如果传递负精度,它将使用尽可能多的数字来表示值,但不会更多。尝试:

0.000000000000001
1234
1234.001

那会给你:

|  rowkey  |    columnfamily    |
|          | col1 | col2 | col3 |
|----------|------|------|------|
| row1     | 1    | 2    | 3    |
| row2     | 2    | 4    | 8    |
| row3     | 3    | 3    | 3    |