What's wrong with using == to compare floats in Java?

后端 未结 21 2250
你的背包
你的背包 2020-11-22 01:00

According to this java.sun page == is the equality comparison operator for floating point numbers in Java.

However, when I type this code:



        
21条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-22 01:33

    You can use Float.floatToIntBits().

    Float.floatToIntBits(sectionID) == Float.floatToIntBits(currentSectionID)
    

提交回复
热议问题