在固定寬度表中呈現浮點數時,會出現有關保留有效數字的問題。標準 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中文網其他相關文章!