Double.IsNaN(Double) Método

Definição

Retorna um valor que indica se o valor especificado não é um número (NaN).

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

Parâmetros

d
Double

Um número de ponto flutuante de precisão dupla.

Retornos

true se d for avaliado como NaN; caso contrário, false.

Implementações

Exemplos

O exemplo de código a seguir ilustra o uso de IsNaN:

// This will return true.
if ( Double::IsNaN( 0 / zero ) )
{
   Console::WriteLine( "Double::IsNan() can determine whether a value is not-a-number." );
}
// This will return true.
if (Double.IsNaN(0 / zero))
   Console.WriteLine("Double.IsNan() can determine whether a value is not-a-number.");
// This will return true.
if Double.IsNaN(0. / zero) then
    printfn "Double.IsNan() can determine whether a value is not-a-number."
' This will return true.
If Double.IsNaN(0 / zero) Then
    Console.WriteLine("Double.IsNan() can determine whether a value is not-a-number.")
End If

Comentários

As operações de ponto flutuante retornam NaN para sinalizar que o resultado da operação é indefinido. Por exemplo, dividir 0,0 por 0,0 resulta em NaN.

Observação

IsNaN retornará false se um Double valor for PositiveInfinity ou NegativeInfinity. Para testar esses valores, use os IsInfinitymétodos , IsPositiveInfinitye IsNegativeInfinity .

Aplica-se a

Confira também