How can we use them in our codes, and what will cause NaN(not a number)?
|
|
|
|
|
|
|
This may be a good reference if you want to learn more about floating point numbers in Java. Positive Infinity is a positive number so large that it can't be represented normally. Negative Infinity is a negative number so large that it cannot be represented normally. NaN means "Not a Number" and results from a mathematical operation that doesn't yield a number- like dividing 0 by 0. In Java, the Double and Float classes both have constants to represent all three cases. They are POSITIVE_INFINITY, NEGATIVE_INFINITY, and NaN. |
|||
|
|
|
|
And the constants from the specification of the More information can be found in the IEEE-754 page in Wikipedia. Here's a little program to illustrate the three constants:
Output:
|
|||
|
|
The idea is to represent special numbers which can arise naturally from operations on "normal" numbers. You could see infinity (both positive and negative) as "overflow" of the floating point representation, the idea being that in at least some conditions, having such a value returned by a function still gives meaningful result. They still have some ordering properties, for example (so they won't screw sorting operations, for example). Nan is very particular: if x is Nan, x == x is false (that's actually one way to test for nan, at least in C, again). This can be quite confusing if you are not used to floating point peculiarities. Unless you do scientific computation, I would say that having Nan returned by an operation is a bug, at least in most cases that come to mind. Nan can come for various operations: 0/0, inf - inf, inf/inf, 0 * inf. Nan does not have any ordering property, either. |
||
|
|
|
|
Infinity (in java) means that the result of an operation will be such an extremely large positive or negative number that it cannot be represented normally. |
||
|
|
|
|
You can use them as any other number: e.g:
|
||
|
|
