Double.isInfinite() has the following syntax.
public boolean isInfinite()
In the following code shows how to use Double.isInfinite() method.
It divides 1
by 0
and creates
a infinite double value and then
its uses the isInfinite()
to check.
public class Main { public static void main(String[] args) { Double double1 = new Double(1/0.0); System.out.println(double1.isInfinite()); } }
The output: