I was just studying OCPJP questions and I found this strange code:
public static void main(String a[]) {
System.out.println(Double.NaN==Double.NaN);
System.out.println(Double.NaN!=Double.NaN);
}
When I ran the code, I got:
false
true
How is the output false
when we're comparing two things that look the same as each other? What does NaN
mean?
NaN means "Not a Number".
Java Language Specification (JLS) Third Edition says:
An operation that overflows produces a signed infinity, an operation that underflows produces a denormalized value or a signed zero, and an operation that has no mathematically definite result produces NaN. All numeric operations with NaN as an operand produce NaN as a result. As has already been described, NaN is unordered, so a numeric comparison operation involving one or two NaNs returns
false
and any!=
comparison involving NaN returnstrue
, includingx!=x
whenx
is NaN.
NaN is by definition not equal to any number including NaN. This is part of the IEEE 754 standard and implemented by the CPU/FPU. It is not something the JVM has to add any logic to support.
http://en.wikipedia.org/wiki/NaN
A comparison with a NaN always returns an unordered result even when comparing with itself. ... The equality and inequality predicates are non-signaling so x = x returning false can be used to test if x is a quiet NaN.
Java treats all NaN as quiet NaN.
Why that logic
NaN
means Not a Number
. What is not a number? Anything. You can have anything in one side and anything in the other side, so nothing guarantees that both are equals. NaN
is calculated with Double.longBitsToDouble(0x7ff8000000000000L)
and as you can see in the documentation of longBitsToDouble
:
If the argument is any value in the range
0x7ff0000000000001L
through0x7fffffffffffffffL
or in the range0xfff0000000000001L
through0xffffffffffffffffL
, the result is aNaN
.
Also, NaN
is logically treated inside the API.
Documentation
/**
* A constant holding a Not-a-Number (NaN) value of type
* {@code double}. It is equivalent to the value returned by
* {@code Double.longBitsToDouble(0x7ff8000000000000L)}.
*/
public static final double NaN = 0.0d / 0.0;
By the way, NaN
is tested as your code sample:
/**
* Returns {@code true} if the specified number is a
* Not-a-Number (NaN) value, {@code false} otherwise.
*
* @param v the value to be tested.
* @return {@code true} if the value of the argument is NaN;
* {@code false} otherwise.
*/
static public boolean isNaN(double v) {
return (v != v);
}
Solution
What you can do is use compare
/compareTo
:
Double.NaN
is considered by this method to be equal to itself and greater than all otherdouble
values (includingDouble.POSITIVE_INFINITY
).
Double.compare(Double.NaN, Double.NaN);
Double.NaN.compareTo(Double.NaN);
Or, equals
:
If
this
andargument
both representDouble.NaN
, then theequals
method returnstrue
, even thoughDouble.NaN==Double.NaN
has the valuefalse
.
Double.NaN.equals(Double.NaN);
It might not be a direct answer to the question.
But if you want to check if something is equal to Double.NaN
you should use this:
double d = Double.NaN
Double.isNaN(d);
This will return true
The javadoc for Double.NaN says it all:
A constant holding a Not-a-Number (NaN) value of type
double
. It is equivalent to the value returned byDouble.longBitsToDouble(0x7ff8000000000000L)
.
Interestingly, the source for Double
defines NaN
thus:
public static final double NaN = 0.0d / 0.0;
The special behaviour you describe is hard-wired into the JVM.
NaN is a special value that denotes "not a number"; it's the result of certain invalid arithmetic operations, such as sqrt(-1)
, and has the (sometimes annoying) property that NaN != NaN
.
as per, The IEEE standard for floating point arithmetic for Double Precision numbers,
where,The IEEE double precision floating point standard representation requires a 64 bit word, which may be represented as numbered from 0 to 63, left to right
S: Sign – 1 bit
E: Exponent – 11 bits
F: Fraction – 52 bits
If
E=2047
(allE
are1
) andF
is nonzero, thenV=NaN
("Not a number")
Which means,
If all E
bits are 1, and if there is any non-zero bit in F
then the number is NaN
.
therefore, among others, all following numbers are NaN
,
0 11111111 0000000000000000010000000000000000000000000000000000 = NaN
1 11111111 0000010000000000010001000000000000001000000000000000 = NaN
1 11111111 0000010000011000010001000000000000001000000000000000 = NaN
In particular, you cannot test
if (x == Double.NaN)
to check whether a particular result equals Double.NaN
, because all “not a number” values are considered distinct. However, you can use the Double.isNaN
method:
if (Double.isNaN(x)) // check whether x is "not a number"
Not a number represents the result of operations whose result is not representable with a number. The most famous operation is 0/0, whose result is not known.
For this reason, NaN is not equal to anything (including other not-a-number values). For more info, just check the wikipedia page: http://en.wikipedia.org/wiki/NaN
According to this link, it has various situations and difficult to remember. This is how I remember and distinguish them. NaN
means "mathematically undefined" for example: "the result of 0 divided by 0 is undefined" and because it is undefined, so "comparison related to undefined is of course undefined". Besides, it works more like mathematical premises. On the other hand, both positive and negative infinite is predefined and definitive, for example "positive or negative infinite large is well defined mathematically".
来源:https://stackoverflow.com/questions/8819738/why-does-double-nan-double-nan-return-false