Freigeben über


Double.IsNegativeInfinity-Methode

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

Namespace: System
Assembly: mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Shared Function IsNegativeInfinity ( _
    d As Double _
) As Boolean
'Usage
Dim d As Double
Dim returnValue As Boolean

returnValue = Double.IsNegativeInfinity(d)
public static bool IsNegativeInfinity (
    double d
)
public:
static bool IsNegativeInfinity (
    double d
)
public static boolean IsNegativeInfinity (
    double d
)
public static function IsNegativeInfinity (
    d : double
) : boolean

Parameter

  • d
    Eine Gleitkommazahl mit doppelter Genauigkeit.

Rückgabewert

true, wenn dNegativeInfinity ergibt, andernfalls false.

Hinweise

Gleitkommaoperationen zeigen durch die Rückgabe von NegativeInfinity einen Überlauf an.

Beispiel

Das folgende Codebeispiel veranschaulicht die Verwendung von IsNegativeInfinity:

            ' This will return "True".
            Console.Write("IsNegativeInfinity(-5.0 / 0) = ")
            If Double.IsNegativeInfinity(-5 / 0) Then
                Console.WriteLine("True.")
            Else
                Console.WriteLine("False.")
            End If

...
            If D > Double.MaxValue Then
                Console.WriteLine("Your number is bigger than a double.")
            End If

...
            ' This will equal Infinity.
            Console.WriteLine("10.0 minus NegativeInfinity equals " + (10 - Double.NegativeInfinity).ToString() + ".")
         // This will return "true".
            Console.WriteLine("IsNegativeInfinity(-5.0 / 0) == {0}.", Double.IsNegativeInfinity(-5.0 / 0) ? "true" : "false");

...
           if (d > Double.MaxValue) 
            {
                Console.WriteLine("Your number is bigger than a double.");
            }

...
           // This will equal Infinity.
            Console.WriteLine("10.0 minus NegativeInfinity equals {0}.", (10.0 - Double.NegativeInfinity).ToString());
   // This will return S"true".
   Console::WriteLine( "IsNegativeInfinity(-5.0 / 0) == {0}.", Double::IsNegativeInfinity(  -5.0 / zero ) ? (String^)"true" : "false" );

...
   if ( d > Double::MaxValue )
   {
      Console::WriteLine( "Your number is bigger than a double." );
   }

...
   // This will equal Infinity.
   Console::WriteLine( "10.0 minus NegativeInfinity equals {0}.", (10.0 - Double::NegativeInfinity) );
        // This will return "true".
        Console.WriteLine("IsNegativeInfinity(-5.0 / 0) == {0}.", 
            (System.Double.IsNegativeInfinity((-5.0 / 0))) ? "true" : "false");

...
        if (d.doubleValue() > Double.MAX_VALUE) {
            Console.WriteLine("Your number is bigger than a double.");
        }

...
        // This will equal Infinity.
        Console.WriteLine("10.0 minus NegativeInfinity equals {0}.",
            System.Convert.ToString(10.0 - System.Double.NegativeInfinity));

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

Double-Struktur
Double-Member
System-Namespace
IsInfinity
IsPositiveInfinity
PositiveInfinity
NegativeInfinity