Java双精度求和麻烦

Java double precision sum trouble(Java双精度求和麻烦)
本文介绍了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.

doubles 在 binary 中存储为分数,而不是十进制.例如,3.75 只是存储为 2^1 + 2^0 + 2^(-1) + 2^(-2).

doubles 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.80.17 不能完全表示为二进制分数,所以会有一些舍入误差.

2.8 and 0.17 cannot be represented exactly as binary fractions, so there's going to be some rounding error.

这篇文章可能对您也有帮助.

这篇关于Java双精度求和麻烦的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Show progress during FTP file upload in a java applet(在 Java 小程序中显示 FTP 文件上传期间的进度)
How to copy a file on the FTP server to a directory on the same server in Java?(java - 如何将FTP服务器上的文件复制到Java中同一服务器上的目录?)
FTP zip upload is corrupted sometimes(FTP zip 上传有时会损坏)
Enable logging in Apache Commons Net for FTP protocol(在 Apache Commons Net 中为 FTP 协议启用日志记录)
Checking file existence on FTP server(检查 FTP 服务器上的文件是否存在)
FtpClient storeFile always return False(FtpClient storeFile 总是返回 False)