numeric_limits::min_exponent
Retorna o expoente integral negativo máximo que o tipo de ponto flutuante pode representar como um valor finito quando uma base da raiz é elevada à potência.
static const int min_exponent = 0;
Valor de retorno
O expoente raiz- base integral mínimo representable por tipo.
Comentários
A função de membro é significante somente para tipos de ponto flutuante. min_exponent é o valor FLT_MIN_EXP para o tipo float.
Exemplo
// numeric_limits_min_exponent.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "The minimum radix-based exponent for type float is: "
<< numeric_limits<float>::min_exponent
<< endl;
cout << "The minimum radix-based exponent for type double is: "
<< numeric_limits<double>::min_exponent
<< endl;
cout << "The minimum radix-based exponent for type long double is: "
<< numeric_limits<long double>::min_exponent
<< endl;
}
Requisitos
limites <deCabeçalho: >
Namespace: std