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 silencioso para o tipo.
Comentários
O valor de retorno será significativo 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
limites <deCabeçalho: >
Namespace: std