numeric_limits::min_exponent10
Restituisce l'esponente integrale negativo massimo che il tipo a virgola mobile può rappresentare come valore finito quando una base di dieci viene generata alla potenza.
static const int min_exponent10 = 0;
Valore restituito
L'esponente integrale minimo di base 10 rappresentabile dal tipo.
Note
La funzione membro è significativa solo per i tipi a virgola mobile. min_exponent10 è il valore FLT_MIN_10_EXP per tipo mobile.
Esempio
// numeric_limits_min_exponent10.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "The minimum base 10 exponent for type float is: "
<< numeric_limits<float>::min_exponent10
<< endl;
cout << "The minimum base 10 exponent for type double is: "
<< numeric_limits<double>::min_exponent10
<< endl;
cout << "The minimum base 10 exponent for type long double is: "
<< numeric_limits<long double>::min_exponent10
<< endl;
}
Requisiti
limiti <diIntestazione: >
Spazio dei nomi: std