How come a primitive float value can be -0.0? What does that mean?
Can I cancel that feature?
When I have:
float fl;
Then fl == -0.0 returns true and so does fl == 0. But when I print it, it prints -0.0.
|
How come a primitive float value can be -0.0? What does that mean? When I have:
Then |
||||
|
|
|
You can get around the problem by adding e.g.
See: Java Floating-Point Number Intricacies
Added: The link now seems to be broken - here is another copy. |
||||
|
|
floating point numbers are stored in memory using the IEEE 754 standard meaning that there could be rounding errors. You could never be able to store a floating point number of infinite precision with finite resources. You should never test if a floating point number == to some other, i.e. never write code like this:
where You should define a precision you want to work with:
and then test against the precision you need
So in your case if you want to test that a floating point number equals to zero in the given precision:
And if you want to format the numbers when outputting them in the GUI you may take a look at the following article and the NumberFormat class. |
|||||
|
|
From wikipedia
I don't think you can or need to cancel that feature. You must not compare floating point numbers with == because of precision errors anyway. |
|||
|
|
|
The floating point type in Java is described in the JLS: 4.2.3 Floating-Point Types, Formats, and Values. It talks about these special values:
And has some important notes about them:
You can't "cancel" that feature, it's part of how the floats work. For more about negative zero, have a look at the Signed zero Wikipedia entry. If you want to check what "kind" of zero you have, you can use the fact that:
is Have a look here for more of this: Java Floating-Point Number Intricacies. |
||||
|
|
|
A good article on how float point numbers are managed in java / computers. http://www.artima.com/underthehood/floating.html btw: it is real pain in computers when 2.0 - 1.0 could produce 0.999999999999 that is not equal to1.0 :). That can be especially easy stumbled upon in javascript form validations. |
|||
|
|