LAST UPDATED: NOVEMBER 5, 2020
Java Double isNaN(double d) Method
Java isNaN(double d)
method is a part of the Double
class of the java.lang
package. This method is used to check whether the double value passed is Not-a-Number(NaN) or not. It returns the boolean value true
for NaN values and false
for non-NaN values.
Syntax:
public boolean isNaN(double d)
Parameters:
The parameter passed is the double value that is checked for the NaN values.
Returns:
Returns the boolean value true
for NaN values and false
for non-NaN values.
Example 1:
Here, the equivalent values are returned in accordance with the double value passed as an argument.
import java.lang.Double;
public class StudyTonight
{
public static void main(String[] args)
{
double d1 = 67.78;
double d2 = 0.0;
double d3 = -d1/0.0;
double d4 = -d2/0.0;
double d5 = 0.0/0.0;
System.out.println("The value is : " +Double.isNaN(d1)); //returns false for finite value
System.out.println("The value is : " +Double.isNaN(d2)); //returns false for infinite value
System.out.println("The value is : " +Double.isNaN(d3)); //returns false for infinaite value
System.out.println("The value is : " +Double.isNaN(d4)); // returns true for NaN value
System.out.println("The value is : " +Double.isNaN(d5)); // returs true for NaN
}
}
The value is : false
The value is : false
The value is : false
The value is : true
The value is : true
Example 2:
Here is a user-defined example where anyone using this code can put a value of his choice and get the equivalent output.
import java.lang.Double;
import java.util.Scanner;
public class StudyTonight
{
public static void main(String[] args)
{
try
{
System.out.println("Enter the value");
Scanner sc = new Scanner(System.in);
double d = sc.nextDouble();
boolean b = Double.isNaN(d);
if(b== true)
{
System.out.println("Value is NaN");
}
else
{
System.out.println("Value is non NaN");
}
}
catch(Exception e)
{
System.out.println("Invalid Input");
}
}
}
Enter the value
NaN
Value is NaN
******************
Enter the value
674.09
Value is non NaN
*******************
Enter the value
0x688
Invalid Input
Live Example:
Here, you can test the live code example. You can execute the example for different values, even can edit and write your examples to test the Java code.