Java.lang.Double 类

java.lang.Double.isNaN() 方法用于检查此 Double 值是否为非数字 (NaN)。如果此 Double 值是非数字 (NaN),则该方法返回 true,否则返回 false。

语法

public boolean isNaN() 

参数

无需参数。

返回值

如果该对象表示的值为 NaN,则返回 true;否则为 false。

异常

无。

示例:

在下面的示例中, java.lang.Double.isNaN()方法用于检查给定的Double值是否为NaN。

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建Double值
    Double x = 5.2;
    Double y = 0.0/0.0;
    Double z = Double.NaN;

    //检查 NaN 的 Double 值
    System.out.println("Is x NaN?: " + x.isNaN());  
    System.out.println("Is y NaN?: " + y.isNaN()); 
    System.out.println("Is z NaN?: " + z.isNaN());  
  }
} 

上述代码的输出将是:

Is x NaN?: false
Is y NaN?: true
Is z NaN?: true