Compartilhar via


numeric_limits::min_exponent

Retorna o expoente inteiro negativo máximo que o tipo de ponto flutuante pode representar como um valor finito quando uma base da raiz é gerada à potência.

static const int min_exponent = 0;

Valor de retorno

O expoente raiz- com base no tipo integral mínimo representável.

Comentários

A função de membro é significativa 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

Cabeçalho: <limits>

namespace: STD

Consulte também

Referência

strstreambuf Class