我希望能够显示使用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
答案 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 |