在固定宽度表中呈现浮点数时,会出现有关保留有效数字的问题。标准 fmt.Printf 函数对此方面提供了有限的控制。
为了解决这个问题,我们可以实现一个自定义格式函数,该函数可以确定最佳的有效位数适合指定的宽度。这涉及分析相关数字并根据其在科学记数法和常规形式之间进行选择
实现:
// format12 formats x to be 12 chars long. func format12(x float64) string { if x >= 1e12 { // For scientific notation, determine the width of the exponent. s := fmt.Sprintf("%.g", x) format := fmt.Sprintf("%%12.%dg", 12-len(s)) return fmt.Sprintf(format, x) } // For regular form, determine the width of the fraction. s := fmt.Sprintf("%.0f", x) if len(s) == 12 { return s } format := fmt.Sprintf("%%%d.%df", len(s), 12-len(s)-1) return fmt.Sprintf(format, x) }
测试:
fs := []float64{0, 1234.567890123, 0.1234567890123, 123456789012.0, 1234567890123.0, 9.405090880450127e+9, 9.405090880450127e+19, 9.405090880450127e+119} for _, f := range fs { fmt.Println(format12(f)) }
输出:
0.0000000000 0.1234567890 1234.5678901 123456789012 1.234568e+12 9405090880.5 9.405091e+19 9.40509e+119
以上是Go 中如何将 Float64 转换为具有最大有效位数的固定宽度字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!