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

请参见

参考

strstreambuf Class