Single.IsNegativeInfinity(Single) メソッド

定義

指定した数値が負の無限大と評価されるかどうかを示す値を返します。

public:
 static bool IsNegativeInfinity(float f);
public:
 static bool IsNegativeInfinity(float f) = System::Numerics::INumberBase<float>::IsNegativeInfinity;
public static bool IsNegativeInfinity (float f);
static member IsNegativeInfinity : single -> bool
Public Shared Function IsNegativeInfinity (f As Single) As Boolean

パラメーター

f
Single

単精度浮動小数点数。

戻り値

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

実装

次のコード例は、 メソッドを IsNegativeInfinity 示しています。

// This will return true.
Console::WriteLine( "IsNegativeInfinity(-5.0F / 0) == {0}.", Single::IsNegativeInfinity(  -5.0F / zero ) ? (String^)"true" : "false" );
// This will return true.
Console.WriteLine("IsNegativeInfinity(-5.0F / 0) == {0}.", Single.IsNegativeInfinity(-5.0F / 0) ? "true" : "false");
// This will return true.
printfn $"IsNegativeInfinity(-5.0F / 0) == {Single.IsNegativeInfinity(-5f / 0f)}."
' This will return True.
Console.Write("IsNegativeInfinity(-5.0 / 0) = ")
If Single.IsNegativeInfinity(-5 / 0) Then
    Console.WriteLine("True.")
Else
    Console.WriteLine("False.")
End If

注釈

浮動小数点演算は、オーバーフロー条件を通知するために戻ります NegativeInfinity

適用対象

こちらもご覧ください