共用方式為


numeric_limits::denorm_min

傳回最小的非零 denormalized 值。

static Type denorm_min( ) throw( );

傳回值

最小的非零 denormalized 值。

備註

long double 與 C++ 編譯器的 double

函式傳回型別的最小值,和 分鐘 相同,如果 has_denorm 不等於 denorm_present

範例

// numeric_limits_denorm_min.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>

using namespace std;

int main( )
{
   cout << "The smallest nonzero denormalized value\n for float "
        << "objects is: " << numeric_limits<float>::denorm_min( ) 
        << endl;
   cout << "The smallest nonzero denormalized value\n for double "
        << "objects is: " << numeric_limits<double>::denorm_min( ) 
        << endl;
   cout << "The smallest nonzero denormalized value\n for long double "
        << "objects is: " << numeric_limits<long double>::denorm_min( ) 
        << endl;

   // A smaller value will round to zero
   cout << numeric_limits<float>::denorm_min( )/2 <<endl;
   cout << numeric_limits<double>::denorm_min( )/2 <<endl;
   cout << numeric_limits<long double>::denorm_min( )/2 <<endl;
}
  

需求

標題: <。>

命名空間: std

請參閱

參考

strstreambuf 類別