Partilhar via


numeric_limits::quiet_NaN

Retorna a representação de um silêncio não um número (NAN) para o tipo.

static Type quiet_NaN( ) throw( );

Valor de retorno

a representação de um NAN quieto para o tipo.

Comentários

O valor de retorno é significativa somente se has_quiet_NaN é true.

Exemplo

// numeric_limits_quiet_nan.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>

using namespace std;

int main( )
{
   cout << "The quiet NaN for type float is:  "
        << numeric_limits<float>::quiet_NaN( )
        << endl;
   cout << "The quiet NaN for type int is:  "
        << numeric_limits<int>::quiet_NaN( )
        << endl;
   cout << "The quiet NaN for type long double is:  "
        << numeric_limits<long double>::quiet_NaN( )
        << endl;
}
  

Requisitos

Cabeçalho: <limits>

namespace: STD

Consulte também

Referência

strstreambuf Class