次の方法で共有


numeric_limits::has_denorm

型が非正規化値を許可するかどうかをテストします。

static const float_denorm_style has_denorm = denorm_absent;

戻り値

型が非正規化値を許可するかどうかを示す [const]float_denorm_style列挙型の値。

解説

メンバーは、値を非正規化浮動小数点型、実質的に、指数部のビットの可変数の 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