numeric_limits::has_quiet_NaN
Testa se um tipo tem uma representação para um silêncio não um número (NAN), que nonsignaling.
static const bool has_quiet_NaN = false;
Valor de retorno
true se tipo tem uma representação para um NAN quieto; se não false .
Comentários
Um NAN quieto é uma codificação para não um número, que não sinalize sua presença em uma expressão.O valor de retorno é true se is_iec559 é válido.
Exemplo
// numeric_limits_has_quiet_nan.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "Whether float objects have quiet_NaN: "
<< numeric_limits<float>::has_quiet_NaN
<< endl;
cout << "Whether double objects have quiet_NaN: "
<< numeric_limits<double>::has_quiet_NaN
<< endl;
cout << "Whether long int objects have quiet_NaN: "
<< numeric_limits<long int>::has_quiet_NaN
<< endl;
}
Requisitos
Cabeçalho: <limits>
namespace: STD