Compartir a través de


numeric_limits::is_iec559

Prueba si un tipo se ajusta a CEI 559 estándares.

static const bool is_iec559 = false;

Valor devuelto

true si el tipo se ajusta a CEI 559 estándares; false si no.

Comentarios

CEI 559 es un estándar internacional para representar valores de punto flotante y también se conoce como IEEE 754 en EE.UU.

Ejemplo

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

using namespace std;

int main( )
{
   cout << "Whether float objects conform to iec559 standards: "
        << numeric_limits<float>::is_iec559
        << endl;
   cout << "Whether double objects conform to iec559 standards: "
        << numeric_limits<double>::is_iec559
        << endl;
   cout << "Whether int objects conform to iec559 standards: "
        << numeric_limits<int>::is_iec559
        << endl;
   cout << "Whether unsigned char objects conform to iec559 standards: "
        << numeric_limits<unsigned char>::is_iec559
        << endl;
}
  

Requisitos

límites <deEncabezado: >

Espacio de nombres: std

Vea también

Referencia

strstreambuf (Clase)