numeric_limits::min
Gibt den minimalen normalisiertem Wert für einen Typ zurück.
static Type min( ) throw( );
Rückgabewert
Das Minimum normalisierter Wert für den Typ.
Hinweise
Das Minimum normalisierter Wert ist INT_MIN für Typ int und FLT_MIN für Typ float. Der Rückgabewert ist sinnvoll, wenn is_boundedtrue ist, oder wenn is_signedfalse ist.
Beispiel
// numeric_limits_min.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "The minimum value for type float is: "
<< numeric_limits<float>::min( )
<< endl;
cout << "The minimum value for type double is: "
<< numeric_limits<double>::min( )
<< endl;
cout << "The minimum value for type int is: "
<< numeric_limits<int>::min( )
<< endl;
cout << "The minimum value for type short int is: "
<< numeric_limits<short int>::min( )
<< endl;
}
Anforderungen
Grenzen Header: <>
Namespace: std