如何显示具有多个小数位的数字? (爪哇)
我想知道是否有一种方法可以“作弊”并使用比 Java 中的双精度数更多小数位数的数字,然后通过 [Graphics Object].drawString(number, 10, 10);< /code>
我可以这样做吗?
I was wondering if there is a way to "cheat" and work with numbers with way more decimal places than a double in Java, and then display it via [Graphics Object].drawString(number, 10, 10);
Can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 BigDecimal 类。
http://download.oracle.com/javase /1,5.0/docs/api/java/math/BigDecimal.html
Try the BigDecimal class.
http://download.oracle.com/javase/1,5.0/docs/api/java/math/BigDecimal.html