當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。