Float.isInfinite(float v) has the following syntax.
public static boolean isInfinite(float v)
In the following code shows how to use Float.isInfinite(float v) method.
public class Main { // w ww. ja va 2 s. c om public static void main(String[] args) { Float f1 = new Float(1.0/0.0); Float f2 = new Float(0.0/0.0); System.out.println(f1 + " = " + Float.isInfinite(f1)); System.out.println(f2 + " = " + Float.isInfinite(f2)); } }
The code above generates the following result.