当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Double.IsNaN()用法及代码示例


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

用法: public static bool IsNaN (double d);

参数:
d:它是System.Double类型的双精度浮点数。


返回类型:如果指定的值不是数字(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,以表明该运算的结果是不确定的。


相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Double.IsNaN() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。