Single.IsPositiveInfinity(Single) Methode

Definition

Gibt einen Wert zurück, der angibt, ob die angegebene Zahl plus unendlich ergibt.

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

Parameter

f
Single

Eine Gleitkommazahl mit einfacher Genauigkeit.

Gibt zurück

true, wenn fPositiveInfinity ergibt, andernfalls false.

Implementiert

Beispiele

Im folgenden Codebeispiel wird die IsPositiveInfinity -Methode veranschaulicht.

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

Hinweise

Gleitkommavorgänge werden zurückgegeben PositiveInfinity , um eine Überlaufbedingung zu signalisieren.

Gilt für:

Weitere Informationen