Compartir a través de


numeric_limits::has_quiet_NaN

Prueba si un tipo tiene una representación para una quiet no un número (NAN), que nonsignaling.

static const bool has_quiet_NaN = false;

Valor devuelto

true si type tiene una representación para un NAN reservado; false si no.

Comentarios

Un NAN reservado es una codificación para no un número, que no indica su presencia en una expresión. El valor devuelto es true si is_iec559 es true.

Ejemplo

// 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

límites <deEncabezado: >

Espacio de nombres: std

Vea también

Referencia

strstreambuf (Clase)