我想使用 DecimalFormat 将浮点数格式化为给定的精度。我拥有的是这个
val formatter = DecimalFormat(if (precision > 0) "#0.${"0".repeat(precision)}" else "#")
假设精度是 2,当我这样做时
formatter.format(20.0f).toFloat()
我得到的输出是20.0f
而不是20.00f
您将String
转换回Float
,从而丢失String
的格式。
相反,只需打印format
的输出:
println(formatter.format(20.0f))
如果你想要额外的"f",把它放在你的模式中:
val pattern = if (precision > 0) {
"#0.${"0".repeat(precision)}f"
} else {
"#f"
}