Single.IsNegativeInfinity(Single) Método

Definição

Retorna um valor que indica se o número especificado é avaliado quanto ao infinito negativo.

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

Parâmetros

f
Single

Um número de ponto flutuante de precisão simples.

Retornos

true se f for avaliado como NegativeInfinity; caso contrário, false.

Implementações

Exemplos

O exemplo de código a seguir demonstra o IsNegativeInfinity método .

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

Comentários

As operações de ponto flutuante retornam NegativeInfinity para sinalizar uma condição de estouro.

Aplica-se a

Confira também