numeric_limits::min
型の最小の正規化された値を返します。
static Type min( ) throw( );
戻り値
型の最小の正規化された値。
解説
最小限の正規化された値は型 floatの型 int と FLT_MIN の INT_MIN です。戻り値は is_bounded が true であるか、または is_signed が falseの意味を持ちます。
使用例
// 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;
}
必要条件
ヘッダー: <limits>
名前空間: std