numeric_limits::round_style

Restituisce un valore che descrive i diversi metodi che un'implementazione possibile l'arrotondamento del valore a virgola mobile a un valore intero.

static const float_round_style round_style = round_toward_zero;

Valore restituito

Un valore dall'enumerazione float_round_style che descrive lo stile di arrotondamento.

Note

Il membro memorizza un valore che descrive i diversi metodi che un'implementazione possibile l'arrotondamento del valore a virgola mobile a un valore intero.

Lo stile rotondo è difficile codificato in questa implementazione, pertanto anche se il programma viene avviata con una modalità di arrotondamento diverso, che il valore non modificherà.

Esempio

// 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;
}
  

Requisiti

intestazione: <limits>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

strstreambuf Class