numeric_limits::min
Retorna o valor normalizado mínimo para um tipo.
static Type min( ) throw( );
Valor de retorno
O valor normalizado mínimo do tipo.
Comentários
O valor normalizado mínimo é INT_MIN para o tipo int e FLT_MIN para o tipo float. O valor de retorno é significativo se is_bounded é true ou se is_signed é false.
Exemplo
// 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
limites <deCabeçalho: >
Namespace: std