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