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


C# Double.IsNegativeInfinity()用法及代碼示例


在C#中,Double.IsNegativeInfinity()是Double結構方法。此方法用於檢查指定的值是否等於負無窮大。在某些浮點運算中,有可能獲得負無窮大的結果。例如:如果任何負值除以零,將導致負無窮大。

用法: public static bool IsNegativeInfinity (double d);
參數:
d: It is a double-precision floating-point number of type System.Double.

返回類型:如果指定的值的計算結果為負無窮大,則此函數返回布爾值True,否則返回False。


例:

Input  : d = -5.0 / 0.0 
Output : True

Input  : d = -1.5935e250 * 7.948e110
Output : True

代碼:演示Double.IsNegativeInfinity(Double)方法

// C# program to illustrate the 
// Double.IsNegativeInfinity() Method 
using System; 
  
class GFG { 
  
    // Main method 
    static public void Main() 
    { 
  
        // Dividing a negtaive number by zero 
        // results in Negative infinity. 
  
        // Dividing a number directly by 0 
        // produces an error 
        // So 0 is stored in a variable first 
  
        double zero = 0.0; 
        double value = -5; 
        double result = value / zero; 
  
        // Printing result 
        Console.WriteLine(result); 
  
        // Check result using IsNegativeInfinity() Method 
        Console.WriteLine(Double.IsNegativeInfinity(result)); 
  
        // Result of floating point operation 
        // that is less than Double.MinValue 
        // is Negative Infinity 
  
        result = Double.MinValue * 7.948e110; 
  
        // Printing result 
        Console.WriteLine(result); 
  
        // Check result using IsNegativeInfinity() Method 
        Console.WriteLine(Double.IsNegativeInfinity(result)); 
    } 
}
輸出:
-Infinity
True
-Infinity
True

注意:

  • 小於Double.MinValue(即-1.7976931348623157E + 308)的任何浮點運算的結果都被視為負無窮大。
  • 浮點運算返回Infinity(正無窮大)或-Infinity(負無窮大)以指示溢出情況。


相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Double.IsNegativeInfinity() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。