Double.IsPositiveInfinity(Double) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Gibt einen Wert zurück, der angibt, ob die angegebene Zahl plus unendlich ergibt.
public:
static bool IsPositiveInfinity(double d);
public:
static bool IsPositiveInfinity(double d) = System::Numerics::INumberBase<double>::IsPositiveInfinity;
public static bool IsPositiveInfinity (double d);
static member IsPositiveInfinity : double -> bool
Public Shared Function IsPositiveInfinity (d As Double) As Boolean
Parameter
- d
- Double
Eine Gleitkommazahl mit doppelter Genauigkeit.
Gibt zurück
true
, wenn d
PositiveInfinity ergibt, andernfalls false
.
Implementiert
Beispiele
Im folgenden Codebeispiel wird die Verwendung von IsPositiveInfinityveranschaulicht:
// This will return S"true".
Console::WriteLine( "IsPositiveInfinity(4.0 / 0) == {0}.", Double::IsPositiveInfinity( 4.0 / zero ) ? (String^)"true" : "false" );
// This will return "true".
Console.WriteLine("IsPositiveInfinity(4.0 / 0) == {0}.", Double.IsPositiveInfinity(4.0 / 0) ? "true" : "false");
// This will return "true".
printfn $"IsPositiveInfinity(4.0 / 0) = %b{Double.IsPositiveInfinity(4. / 0.)}."
' This will return "True".
Console.Write("IsPositiveInfinity(4.0 / 0) = ")
If Double.IsPositiveInfinity(4 / 0) Then
Console.WriteLine("True.")
Else
Console.WriteLine("False.")
End If
Hinweise
Gleitkommavorgänge kehren zurück PositiveInfinity , um eine Überlaufbedingung zu signalisieren.