Max value can stored in Java float with two digit precision (2 digit accuracy)?

前端 未结 4 936
情深已故
情深已故 2021-01-27 17:55

How I could find max two decimal precision vale that can be stored in float ?

From my understanding, In 32 bit float we have 24(23+1) for storing the number excluding ex

4条回答
  •  孤城傲影
    2021-01-27 18:46

    You cannot specify the precision in a float value. If you limit yourself to 2 decimal places, you don't get more space for something else in return.

提交回复
热议问题