numeric_limits::round_style
Zwraca wartość, która opisuje różne metody, które można wybrać implementacja zaokrąglania wartości zmiennoprzecinkowe wartość całkowitą.
static const float_round_style round_style = round_toward_zero;
Wartość zwracana
Wartość z float_round_style styl wyliczenia, który opisuje zaokrąglenie.
Uwagi
Członek przechowuje wartość, która opisuje różne metody, które można wybrać implementacja zaokrąglania wartości zmiennoprzecinkowe wartość całkowitą.
Okrągły styl trudno kodowane w tej implementacji, tak więc nawet po uruchomieniu programu z innego trybu zaokrąglania, tej wartości nie zmienia się.
Przykład
// 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;
}
Wymagania
Nagłówek:<limity>
Przestrzeń nazw: std