Java Double.isInfinite()
Syntax
Double.isInfinite() has the following syntax.
public boolean isInfinite()
Example
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);
/*w w w . j a v a2 s . co m*/
System.out.println(double1.isInfinite());
}
}
The output: