- Positive infinity means going to infinity in the positive direction -- going into values that are larger and larger in magnitude in the positive direction.
- Negative infinity means going to infinity in the negative direction -- going into values that are larger and larger in magnitude in the negative direction.
- Not-a-number (NaN) is something that is undefined, such as the result of
1/00/0.
And the constants from the specification of the Float class:
More information can be found in the IEEE-754 page in Wikipedia.
Here's a little program to illustrate the three constants:
System.out.println(0f / 0f);
System.out.println(1f / 0f);
System.out.println(-1f / 0f);
Output:
NaN
Infinity
-Infinity
