android 保留一位小数点取消默认四舍五入改为去尾

fun getHeatNum(heat: Double): String {
     val df = DecimalFormat("#.0")
     df.roundingMode = RoundingMode.DOWN
     return df.format(doubleHeat)
}

保留一位小数点,并且舍去最后一位, 1.11---->1.1     1.99----->1.9
平常很少用到 RoundingMode,也是最近才知道RoundingMode有很多类型可以选择

这篇文章有很详细的介绍:https://blog.csdn.net/alanzyy/article/details/8465098

猜你喜欢

转载自blog.csdn.net/qq_34198206/article/details/82995951