Freigeben über


Single.IsPositiveInfinity-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 IsPositiveInfinity ( _
    f As Single _
) As Boolean
'Usage
Dim f As Single
Dim returnValue As Boolean

returnValue = Single.IsPositiveInfinity(f)
public static bool IsPositiveInfinity (
    float f
)
public:
static bool IsPositiveInfinity (
    float f
)
public static boolean IsPositiveInfinity (
    float f
)
public static function IsPositiveInfinity (
    f : float
) : boolean

Parameter

  • f
    Eine Gleitkommazahl mit einfacher Genauigkeit.

Rückgabewert

true, wenn fPositiveInfinity ergibt, andernfalls false.

Hinweise

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

Beispiel

Im folgenden Codebeispiel wird die IsPositiveInfinity-Methode veranschaulicht.

' 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
// This will return true.
Console.WriteLine("IsPositiveInfinity(4.0F / 0) == {0}.", Single.IsPositiveInfinity(4.0F / 0) ? "true" : "false");
// 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 / zero))) ? "true" : "false");

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

Single-Struktur
Single-Member
System-Namespace
IsInfinity
IsNegativeInfinity
PositiveInfinity
NegativeInfinity