numeric_limits::max_exponent
傳回浮點型別可以表示為限制值的最大正整數指數,當基底基數引發該功能時。
static const int max_exponent = 0;
傳回值
最大整數基數根據指數能顯示由這個型別。
備註
成員函式傳回為浮點型別才有意義。 max_exponent 型別的值 FLT_MAX_EXP float。
範例
// numeric_limits_max_exponent.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "The maximum radix-based exponent for type float is: "
<< numeric_limits<float>::max_exponent
<< endl;
cout << "The maximum radix-based exponent for type double is: "
<< numeric_limits<double>::max_exponent
<< endl;
cout << "The maximum radix-based exponent for type long double is: "
<< numeric_limits<long double>::max_exponent
<< endl;
}
需求
標題: <。>
命名空間: std