numeric_limits::is_exact

Test se i calcoli eseguiti su un tipo sono esenti da errori di arrotondamento.

static const bool is_exact = false;

Valore restituito

true se i calcoli sono esenti da errori di arrotondamento; se non false.

Note

Tutti i tipi interi predefiniti hanno rappresentazioni esatte per i rispettivi valori e falserestituita.A virgola fissa o una rappresentazione logica viene considerato esatta, ma una rappresentazione in virgola mobile non è.

Esempio

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

using namespace std;

int main( )
{
   cout << "Whether float objects have calculations "
        << "free of rounding errors: "
        << numeric_limits<float>::is_exact
        << endl;
   cout << "Whether double objects have calculations "
        << "free of rounding errors: "
        << numeric_limits<double>::is_exact
        << endl;
   cout << "Whether long int objects have calculations "
        << "free of rounding errors: "
        << numeric_limits<long int>::is_exact
        << endl;
   cout << "Whether unsigned char objects have calculations "
        << "free of rounding errors: "
        << numeric_limits<unsigned char>::is_exact
        << endl;
}
  

Requisiti

intestazione: <limits>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

strstreambuf Class