📜  C#中的Double.IsNaN()方法

📅  最后修改于: 2021-05-29 15:27:07             🧑  作者: Mango

在C#中, Double.IsNaN()是Double结构方法。此方法用于检查指定的值是否不是数字(NaN)。

返回类型:如果指定的值不是数字(NaN),则此函数返回一个布尔值,即True ,否则返回False

例子:

Input  : d = 0.0 / 0.0 
Output : True

Input  : d = 1.734
Output : False

代码:演示Double.IsNaN(Double)方法。

// C# code to demonstrate 
// Double.IsNaN(Double) method 
using System;
  
class GFG { 
      
    // Main Method
    public static void Main(String[] args) 
    { 
  
        // first example 
        Double f1 = 1.0 / 0.0; 
  
        bool res = Double.IsNaN(f1); 
  
        // printing the output 
        if (res) 
            Console.WriteLine(f1 + " is NaN"); 
        else
            Console.WriteLine(f1 + " is not NaN"); 
  
        // second example 
        double f2 = 0.0 / 0.0; 
  
        bool res1 = Double.IsNaN(f2); 
  
        // printing the output 
        if (res1) 
            Console.WriteLine(f2 + " is NaN"); 
        else
            Console.WriteLine(f2 + " is not NaN"); 
    } 
} 
输出:
Infinity is not NaN
NaN is NaN

笔记:

  • 如果将任何值直接除以0,编译器将显示错误。因此,在上面的示例中,0首先存储在变量中。
  • 每个浮点运算都返回一个NaN,以表明该运算的结果是不确定的。