+ 2
Why and how -0.0==0.0 in java?
Java programming
2 Answers
+ 2
There is no special negative zero mathematically......
in java, negative numbers are stored in 2's complement form. and for -0 and 0  , 2s complement form 00000000 only...
Java programming