i=Double.NaN
while(i==i)
{
//some code
}
what is the output?
Why don't we have a Integer.NaN?
|
|
|
IEEE floating points have a "Not a Number" representation by spec. Integral types do not have such a state. Every possible binary representation of an integer is a real number. |
|||
|
|
There is no output because NaN != NaN as per the IEEE 754 standard, so the loop will never be entered.
Because Integers are based on a two's complement binary representation where every bit pattern is a valid integer, and none have any special meaning. |
|||||||||||
|
|
For For BTW: There is a puzzler, when is the following an infinite loop.
There are three types for Another is when is this an infinite loop.
There is 16 type/value combinations for this, much more than you might expect. ;) |
|||||
|
|
I cannot tell you why but you can work around it with this:
so my guess is that there is not a good reason. |
|||
|
|