Single.IsNegativeInfinity(Single) Méthode

Définition

Retourne une valeur indiquant si le nombre spécifié est équivalent à l'infini négatif.

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

Paramètres

f
Single

Nombre à virgule flottante simple précision.

Retours

true si f a la valeur NegativeInfinity ; sinon, false.

Implémente

Exemples

L’exemple de code suivant illustre la IsNegativeInfinity méthode.

// 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

Remarques

Les opérations à virgule flottante reviennent NegativeInfinity pour signaler une condition de dépassement de capacité.

S’applique à

Voir aussi