Android - 四舍五入到小数点后两位
可能的重复:
将双精度数舍入为小数点后 2 位有效数字
我知道有很多关于如何舍入此类数字的示例。 但是有人可以告诉我如何四舍五入双倍,以获得可以显示为 字符串并且总是有 2 位小数?
Possible Duplicate:
Round a double to 2 significant figures after decimal point
I know that there are plenty of examples on how to round this kind numbers.
But could someone show me how to round double, to get value that I can display as a
String and ALWAYS have 2 decimal places?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
String.format("%.2f", d)
,您的双精度数将自动四舍五入。You can use
String.format("%.2f", d)
, your double will be rounded automatically.一种简单的方法可以做到这一点:
One easy way to do it: