Java - Double isNaN() 方法



描述

Java Double isNaN() 方法如果此 Double 值为非数字 (NaN),则返回 true,否则返回 false。

声明

以下是java.lang.Double.isNan() 方法的声明

public boolean isNaN()

参数

返回值

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

异常

检查 Double 是否为 NAN 示例

以下示例演示了如何使用 Double isNaN() 方法检查 Double 对象是否包含 NaN 值。我们使用一个表达式初始化了一个 Double 对象,该表达式导致正无穷大。然后使用 isNaN() 方法检查其值。

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
      Double d = new Double(1.0/0.0);
   
      // returns true if NaN
      System.out.println(d + " = " + d.isNaN());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

Infinity = false

检查 Double 是否为 NAN 示例

以下示例演示了如何使用 Double isNaN() 方法检查 Double 对象是否包含 NaN 值。我们使用一个表达式初始化了一个 Double 对象,该表达式导致负无穷大。然后使用 isNaN() 方法检查其值。

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
      Double d = new Double(-1.0/0.0);
   
      // returns true if NaN
      System.out.println(d + " = " + d.isNaN());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

-Infinity = false

检查 Double 是否为 NAN 示例

以下示例演示了如何使用 Double isNaN() 方法检查 Double 对象是否包含 NaN 值。我们使用一个表达式初始化了一个 Double 对象,该表达式导致 NAN。然后使用 isNaN() 方法检查其值。

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
      Double d = new Double(0.0/0.0);
   
      // returns true if NaN
      System.out.println(d + " = " + d.isNaN());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

NaN = true

检查 Double 是否为 NAN 示例

以下示例演示了如何使用 Double isNaN() 方法检查 Double 对象是否包含 NaN 值。我们使用一个表达式初始化了一个 Double 对象,该表达式导致零值。然后使用 isNaN() 方法检查其值。

package com.tutorialspoint;
public class DoubleDemo {
   public static void main(String[] args) {
      Double d = new Double(0.0/1.0);
   
      // returns true if NaN
      System.out.println(d + " = " + d.isNaN());
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

0.0 = false
java_lang_double.htm
广告