固定幅のテーブルで浮動小数点数を表現する場合、有効桁の保持に関して懸念が生じます。標準の 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 中国語 Web サイトの他の関連記事を参照してください。