在C#中,Single.IsNaN(Single)是Single結構方法。此方法用於檢查指定的浮點值是否不是數字(NaN)。
用法: public static bool IsNaN (float f);
參數:
F:它是System.Single類型的單精度浮點數。
返回類型:此函數返回布爾值,即True(如果指定的值不是數字(NaN)),否則返回False。
例:
// C# program to demonstrate
// Single.IsNaN(Single) method
using System;
class GFG {
// Main Method
public static void Main(String[] args)
{
// first example
float f1 = 1.0f / 0.0f;
bool res = Single.IsNaN(f1);
// printing the output
if (res)
Console.WriteLine(f1 + " is NaN");
else
Console.WriteLine(f1 + " is not NaN");
// second example
// it will give result
// NaN
float f2 = 0.0f / 0.0f;
bool res1 = Single.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
注意:
- 如果Single值是PositiveInfinity或NegativeInfinity,則此方法返回false。
- 浮點運算將返回NaN,以表明運算結果未定義。
參考:
相關用法
- C# MathF.Log()用法及代碼示例
- C# MathF.Max()用法及代碼示例
- C# MathF.Min()用法及代碼示例
- C# MathF.Exp()用法及代碼示例
- C# MathF.Cos()用法及代碼示例
- C# MathF.Tan()用法及代碼示例
- C# MathF.Abs()用法及代碼示例
- C# MathF.Pow()用法及代碼示例
- C# MathF.Sin()用法及代碼示例
- C# Int32.GetTypeCode用法及代碼示例
- C# Int16.GetTypeCode用法及代碼示例
- C# BitArray.LeftShift()用法及代碼示例
- C# BitArray.RightShift()用法及代碼示例
- C# Int64.GetTypeCode用法及代碼示例
- C# Decimal.GetHashCode用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Single.IsNaN() Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。