Compartilhar via


numeric_limits::radix

Retorna a base inteiro, conhecida como a raiz, usada para representação de um tipo.

static const int radix = 0;

Valor de retorno

A base integral para representação de tipo.

Comentários

A base é 2 para os tipos predefinidos inteiro, e a base para que o exponente é gerado, ou FLT_RADIX, para tipos de ponto flutuante predefinidos.

Exemplo

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

using namespace std;

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

Requisitos

Cabeçalho: <limits>

namespace: STD

Consulte também

Referência

strstreambuf Class