本文介绍了如何获得最小的非零float64?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
数学库似乎没有float64的Min函数.我将如何获得最小的非零float64?
The math library doesn't seem to have a Min function for float64. How would I get the smallest non-zero float64?
推荐答案
如@ oliver-charlesworth所说:
as @oliver-charlesworth says:
package main
import (
"fmt"
"math"
)
func main() {
fmt.Printf("%.12G", math.SmallestNonzeroFloat64)
}
https://play.golang.org/p/kRuIhalODGa
输出:
4.94065645841E-324
这篇关于如何获得最小的非零float64?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!