1. 程式人生 > >JAVA浮點數求和的坑

JAVA浮點數求和的坑

最近在開發一個專案,專案中需要對浮點數求和。


背景是表設計的時候是Float型別,在Java程式碼中需要對一個集合物件的float欄位求和,進行比較大小。

編碼思路,定義一個臨時變數Float型別,然後臨時存放集合中的和。

結果發現比較都是False,很納悶。打印出來,發現Float居然一直有多餘的小數位。後面進行了比較:

public class Test {
public static void main(String[] args) {
    
    test1();
    test2();
    test3();
}

static public void test1(){
    System.out.println("========test1==============");
    BigDecimal sumFee ;
    sumFee =new BigDecimal(36.73+32.65) ;
    Float b=69.38f;
    System.out.println(sumFee);
    System.out.println(b);
    System.out.println(sumFee.floatValue()==b);
}
static public void test2(){
    System.out.println("========test2==============");
    Float sumFee ;
    sumFee = (36.73f+32.65f) ;
    Float b=69.38f;
    System.out.println(sumFee);
    System.out.println(b);
    System.out.println(sumFee.floatValue()==b);
}
static public void test3(){
    System.out.println("========test3==============");
    Double sumFee ;
    sumFee = 36.73+32.65 ;
    Float b=69.38f;
    System.out.println(sumFee);
    System.out.println(b);
    System.out.println(sumFee.floatValue()==b);
}


列印結果:


========test1==============
69.3799999999999954525264911353588104248046875
69.38
true
========test2==============
69.380005
69.38
false
========test3==============
69.38
69.38
true