Double.IsNegativeInfinity メソッド
指定した数値が負の無限大と評価されるかどうかを示す値を返します。
Public Shared Function IsNegativeInfinity( _
ByVal d As Double _) As Boolean
[C#]
public static bool IsNegativeInfinity(doubled);
[C++]
public: static bool IsNegativeInfinity(doubled);
[JScript]
public static function IsNegativeInfinity(
d : double) : Boolean;
パラメータ
- d
倍精度浮動小数点数。
戻り値
d が NegativeInfinity と評価される場合は true 。それ以外の場合は false 。
解説
浮動小数点演算では、オーバーフロー状態を通知するために、 NegativeInfinity を返します。
使用例
[Visual Basic, C#, C++] IsNegativeInfinity の使用方法については、次のコード例を参照してください。
' This will return "True".
Console.Write("IsNegativeInfinity(-5.0 / 0) = ")
If Double.IsNegativeInfinity(-5 / 0) Then
Console.WriteLine("True.")
Else
Console.WriteLine("False.")
End If
. . .
If D > Double.MaxValue Then
Console.WriteLine("Your number is bigger than a double.")
End If
. . .
' This will equal Infinity.
Console.WriteLine("10.0 minus NegativeInfinity equals " + (10 - Double.NegativeInfinity).ToString() + ".")
[C#]
// This will return "true".
Console.WriteLine("IsNegativeInfinity(-5.0 / 0) == {0}.", Double.IsNegativeInfinity(-5.0 / 0) ? "true" : "false");
. . .
if (d > Double.MaxValue)
{
Console.WriteLine("Your number is bigger than a double.");
}
. . .
// This will equal Infinity.
Console.WriteLine("10.0 minus NegativeInfinity equals {0}.", (10.0 - Double.NegativeInfinity).ToString());
[C++]
// This will return S"true".
Console::WriteLine(S"IsNegativeInfinity(-5.0 / 0) == {0}.", Double::IsNegativeInfinity(-5.0 / zero) ? S"true" : S"false");
. . .
if (d > Double::MaxValue) {
Console::WriteLine(S"Your number is bigger than a double.");
}
. . .
// This will equal Infinity.
Console::WriteLine(S"10.0 minus NegativeInfinity equals {0}.", __box((10.0 - Double::NegativeInfinity)));
[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 名前空間 | IsInfinity | IsPositiveInfinity | PositiveInfinity | NegativeInfinity