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;
}
需求
標題: <。>
命名空間: std