Partilhar via


numeric_limits::max_exponent10

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

static const int max_exponent10 = 0;

Valor de retorno

O expoente máximo de base 10 integral representável pelo tipo.

Comentários

O retorno da função de membro é significativa somente para tipos de ponto flutuante.max_exponent é o valor FLT_MAX_10 para o tipo float.

Exemplo

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

using namespace std;

int main( )
{
   cout << "The maximum base 10 exponent for type float is:  "
           << numeric_limits<float>::max_exponent10
           << endl;
   cout << "The maximum base 10 exponent for type double is:  "
           << numeric_limits<double>::max_exponent10
           << endl;
   cout << "The maximum base 10 exponent for type long double is:  "
           << numeric_limits<long double>::max_exponent10
           << endl;
}
  

Requisitos

Cabeçalho: <limits>

namespace: STD

Consulte também

Referência

strstreambuf Class