Double.IsInfinity(Double) Methode

Definition

Gibt einen Wert zurück, der angibt, ob der Wert der angegebenen Zahl -unendlich oder +unendlich ist.

public:
 static bool IsInfinity(double d);
public:
 static bool IsInfinity(double d) = System::Numerics::INumberBase<double>::IsInfinity;
public static bool IsInfinity (double d);
static member IsInfinity : double -> bool
Public Shared Function IsInfinity (d As Double) As Boolean

Parameter

d
Double

Eine Gleitkommazahl mit doppelter Genauigkeit.

Gibt zurück

true, wenn d entweder PositiveInfinity oder NegativeInfinity ergibt, andernfalls false.

Implementiert

Beispiele

Im folgenden Codebeispiel wird die Verwendung von IsInfinityveranschaulicht:

// This will return S"true".
Console::WriteLine( "IsInfinity(3.0 / 0) == {0}.", Double::IsInfinity( 3.0 / zero ) ? (String^)"true" : "false" );
// This will return "true".
Console.WriteLine("IsInfinity(3.0 / 0) == {0}.", Double.IsInfinity(3.0 / 0) ? "true" : "false");
// This will return "true".
printfn $"IsInfinity(3.0 / 0) = %b{Double.IsInfinity(3. / 0.)}."
' This will return "True".
Console.Write("IsInfinity(3.0 / 0) = ")
If Double.IsPositiveInfinity(3 / 0) Then
    Console.WriteLine("True.")
Else
    Console.WriteLine("False.")
End If

Hinweise

Gleitkommavorgänge geben zurück PositiveInfinity oder NegativeInfinity signalisieren eine Überlaufbedingung.

Gilt für:

Weitere Informationen