Java Float NaN
Syntax
Float.NaN has the following syntax.
public static final float NaN
Example
In the following code shows how to use Float.NaN field.
public class Main {
public static void main(String[] args) {
System.out.println("NaN:"+Float.NaN);
}// ww w. jav a 2 s. c o m
}
The code above generates the following result.