次の方法で共有


Double.NaN フィールド

非数 (NaN) の値を表します。このフィールドは定数です。

Public Const NaN As Double
[C#]
public const double NaN;
[C++]
public: const double NaN;
[JScript]
public var NaN : double;

解説

この定数の値は、0 を 0 で除算した結果です。

この定数は、演算の結果が未定義の場合に返されます。

値が非数 (NaN) かどうかを判断するには、 IsNaN を使用します。ある値を NaN と等しい別の値と比較することで、その値が非数 (NaN) かどうかを確認することはできません。

使用例

[Visual Basic, C#, C++] NaN の使用方法については、次のコード例を参照してください。

 
Dim zero As Double = 0

' This condition will return false.
If (0 / zero) = Double.NaN Then
    Console.WriteLine("0 / 0 can be tested with Double.NaN.")
Else
    Console.WriteLine("0 / 0 cannot be tested with Double.NaN; use Double.IsNan() instead.")
End If

[C#] 
Double zero = 0;

// This condition will return false.
if ((0 / zero) == Double.NaN) 
{
    Console.WriteLine("0 / 0 can be tested with Double.NaN.");
} 
else 
{
    Console.WriteLine("0 / 0 cannot be tested with Double.NaN; use Double.IsNan() instead.");
}

[C++] 
Double zero = 0;

// This condition will return false.
if ((0 / zero) == Double::NaN) {
   Console::WriteLine(S"0 / 0 can be tested with Double::NaN.");
} else {
   Console::WriteLine(S"0 / 0 cannot be tested with Double::NaN; use Double::IsNan() instead.");
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard

参照

Double 構造体 | Double メンバ | System 名前空間 | IsNaN