Condividi tramite


numeric_limits::radix

Restituisce la base integrata, detta base, utilizzata per la rappresentazione di un tipo.

static const int radix = 0;

Valore restituito

La base integrata per la rappresentazione.

Note

La base è 2 per tipi integer predefiniti e la base che l'esponente viene generato, o FLT_RADIX, per i tipi a virgola mobile predefiniti.

Esempio

// 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;
}
  

Requisiti

limiti <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe strstreambuf