numeric_limits::has_denorm
測試類型是否允許 denormalized 值。
static const float_denorm_style has_denorm = denorm_absent;
傳回值
型別 constfloat_denorm_style的列舉值,表示這個型別是否允許 denormalized 值。
備註
這個成員 denormalized 儲存值的浮點型別,實際上不定數目 denorm_present 指數位元。
範例
// numeric_limits_has_denorm.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "Whether float objects allow denormalized values: "
<< numeric_limits<float>::has_denorm
<< endl;
cout << "Whether double objects allow denormalized values: "
<< numeric_limits<double>::has_denorm
<< endl;
cout << "Whether long int objects allow denormalized values: "
<< numeric_limits<long int>::has_denorm
<< endl;
}
需求
標題: <limits>
命名空間: std