C# float magically changing value

后端 未结 4 1186
失恋的感觉
失恋的感觉 2021-01-20 22:50


I have a float holding a very important value, which has to be VERY exact.
The problem I have is I\'m changing the value of the float ALWAYS only + and - (No divisi

4条回答
  •  时光取名叫无心
    2021-01-20 23:06

    Just like an int variable can only hold integers in a certain range, a float can only hold certain values. 0.05 is not one of them.

    If you set an int variable to (say) 3.4, it won't actually hold the value 3.4; it will hold that value converted to a representable int value: 3.

    Similarly, if you set a float variable to 0.05, it won't get that exact value; it will instead get that value converted to the closest value representable as a float. This is what you are seeing.

提交回复
热议问题