3

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

I can not understand why I did not get simply 2.97!

Joachim Sauer
  • 302,674
  • 57
  • 556
  • 614
Tobia
  • 9,165
  • 28
  • 114
  • 219

2 Answers2

15

If you wanted 2.97, you should have used BigDecimal.

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.8 and 0.17 cannot be represented exactly as binary fractions, so there's going to be some rounding error.

You may also find this article helpful.

Louis Wasserman
  • 191,574
  • 25
  • 345
  • 413
2

This is due to the precision of floating point types in java (float and double). If you need indefinite precision you should try using BigDecimal instead of double.

javatutorial
  • 1,916
  • 15
  • 20