某天,小伙伴反馈说程序 panic 在一个比较诡异的地方,差不多是下面的代码。
type Point struct {
X float32
Y float32
}
func Get(p Point) {
// import github.com/shopspring/decimal
x, _ := decimal.NewFromFloat32(p.X).Round(7).Float64()
}
某天,小伙伴反馈说程序 panic 在一个比较诡异的地方,差不多是下面的代码。
type Point struct {
X float32
Y float32
}
func Get(p Point) {
// import github.com/shopspring/decimal
x, _ := decimal.NewFromFloat32(p.X).Round(7).Float64()
}