numeric_limits::max
Retourne la valeur finie maximale d'un type.
static Type max( ) throw( );
Valeur de retour
La valeur finie maximale d'un type.
Notes
La valeur finie maximale est terminée INT_MAX pour le type int et FLT_MAX pour le type float. La valeur de retour est pertinente si is_bounded est true.
Exemple
// numeric_limits_max.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main() {
cout << "The maximum value for type float is: "
<< numeric_limits<float>::max( )
<< endl;
cout << "The maximum value for type double is: "
<< numeric_limits<double>::max( )
<< endl;
cout << "The maximum value for type int is: "
<< numeric_limits<int>::max( )
<< endl;
cout << "The maximum value for type short int is: "
<< numeric_limits<short int>::max( )
<< endl;
}
Sortie
The maximum value for type float is: 3.40282e+038
The maximum value for type double is: 1.79769e+308
The maximum value for type int is: 2147483647
The maximum value for type short int is: 32767
Configuration requise
En-tête : <limites>
Espace de noms : std