小数格式舍入
这是小代码来说明我所看到的内容
float floater = 59.999f;
DecimalFormat df = new DecimalFormat("00.0");
System.out.println(df.format(floater));
此打印:
60.0
我希望它打印
59.9
我需要做什么?
Here is small code to illustrate what I am seeing
float floater = 59.999f;
DecimalFormat df = new DecimalFormat("00.0");
System.out.println(df.format(floater));
This prints:
60.0
I would like it to print
59.9
What do I need to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在使用
DecimalFormat
之前添加此行:查看其他舍入模式,看看哪一种最适合您。
注意:此方法仅适用于 JDK 1.6 或以上版本
Add this line before using the
DecimalFormat
:Take a look at the other rounding modes and see which one is best for you.
Note : this method works only in JDK 1.6 or above