Double.IsNaN(Double) メソッド

定義

指定した値が非数値 (NaN) かどうかを示す値を返します。

public:
 static bool IsNaN(double d);
public:
 static bool IsNaN(double d) = System::Numerics::INumberBase<double>::IsNaN;
public static bool IsNaN (double d);
static member IsNaN : double -> bool
Public Shared Function IsNaN (d As Double) As Boolean

パラメーター

d
Double

倍精度浮動小数点数。

戻り値

dNaN と評価される場合は true。それ以外の場合は false

実装

次のコード例は、 の使用方法 IsNaNを示しています。

// This will return true.
if ( Double::IsNaN( 0 / zero ) )
{
   Console::WriteLine( "Double::IsNan() can determine whether a value is not-a-number." );
}
// This will return true.
if (Double.IsNaN(0 / zero))
   Console.WriteLine("Double.IsNan() can determine whether a value is not-a-number.");
// This will return true.
if Double.IsNaN(0. / zero) then
    printfn "Double.IsNan() can determine whether a value is not-a-number."
' This will return true.
If Double.IsNaN(0 / zero) Then
    Console.WriteLine("Double.IsNan() can determine whether a value is not-a-number.")
End If

注釈

浮動小数点演算は、操作の結果が未定義であることを通知するために戻ります NaN 。 たとえば、0.0 を 0.0 で除算すると、 になります NaN

注意

IsNaN値が false または NegativeInfinityPositiveInfinity場合Doubleは を返します。 これらの値をテストするには、および メソッドをIsNegativeInfinity使用IsInfinityIsPositiveInfinityします。

適用対象

こちらもご覧ください