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:





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable