Compartir a través de


numeric_limits::min

Devuelve el valor normalizado mínimo de un tipo.

static Type min( ) throw( );

Valor devuelto

El valor normalizado mínimo para el tipo.

Comentarios

El valor normalizado mínimo es INT_MIN para int y FLT_MIN escritos para floatescrito. El valor devuelto es significativo si is_bounded es true o si is_signed es false.

Ejemplo

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

using namespace std;

int main( )
{
   cout << "The minimum value for type float is:  "
        << numeric_limits<float>::min( )
        << endl;
   cout << "The minimum value for type double is:  "
        << numeric_limits<double>::min( )
        << endl;
   cout << "The minimum value for type int is:  "
        << numeric_limits<int>::min( )
        << endl;
   cout << "The minimum value for type short int is:  "
        << numeric_limits<short int>::min( )
        << endl;
}
  

Requisitos

límites <deEncabezado: >

Espacio de nombres: std

Vea también

Referencia

strstreambuf (Clase)