Java double precision sum trouble(Java双精度求和麻烦)
问题描述
我想知道为什么会出现此错误.(这是Eclipse调试的显示日志)
I would like to know why I get this error. (this is Display log of Eclipse debug)
var
(double) 2.8
tot.getIva()
(java.lang.Double) 0.17
var+tot.get()
(double) 2.9699999999999998
我不明白为什么我没有得到简单的 2.97!
I can not understand why I did not get simply 2.97!
推荐答案
如果你想要 2.97
,你应该使用 BigDecimal
.
If you wanted 2.97
, you should have used BigDecimal
.
double
s 在 binary 中存储为分数,而不是十进制.例如,3.75
只是存储为 2^1 + 2^0 + 2^(-1) + 2^(-2)
.
double
s are stored as fractions in binary, not decimal. So 3.75
, for example, is just stored as 2^1 + 2^0 + 2^(-1) + 2^(-2)
.
2.8
和 0.17
不能完全表示为二进制分数,所以会有一些舍入误差.
2.8
and 0.17
cannot be represented exactly as binary fractions, so there's going to be some rounding error.
这篇文章可能对您也有帮助.
这篇关于Java双精度求和麻烦的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java双精度求和麻烦
基础教程推荐
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01