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


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


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

用法: public static bool IsNegativeInfinity (float f);
參數:
f: It is a single-precision floating-point number of type System.Single.

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


例:演示Single.IsNegativeInfinity(Single)方法:

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

注意:

  • 任何小於Single.MinValue的浮點運算的結果都被視為負無窮大。
  • 浮點運算返回PositiveInfinity或NegativeInfinity以指示溢出條件。

參考:



相關用法


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