共用方式為


numeric_limits::round_style

傳回描述各種方法實作可能因為四捨五入浮點值選取至整數值的值。

static const float_round_style round_style = round_toward_zero;

傳回值

從描述捨入的樣式的 float_round_style 列舉型別的值。

備註

這個成員儲存說明各種方法實作可能因為四捨五入浮點值選取至整數值的值。

這個橢圓形的樣式會硬式編碼在這個實作,因此,即使程式,開始使用不同的捨入模式,這個值不會變更。

範例

// numeric_limits_round_style.cpp
// compile with: /EHsc
#include <iostream>
#include <float.h>
#include <limits>

using namespace std;

int main( )
{
   cout << "The rounding style for a double type is: " 
        << numeric_limits<double>::round_style << endl;
   _controlfp_s(NULL,_RC_DOWN,_MCW_RC );
   cout << "The rounding style for a double type is now: " 
        << numeric_limits<double>::round_style << endl;
   cout << "The rounding style for an int type is: " 
        << numeric_limits<int>::round_style << endl;
}
  

需求

標題: <limits>

命名空間: std

請參閱

參考

strstreambuf Class