Java double precision sum trouble

后端 未结 2 1251
眼角桃花
眼角桃花 2020-11-30 13:12

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         


        
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-30 14:14

    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.

提交回复
热议问题