Condividi tramite


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 vengono compilati gli errori di arrotondamento; se non false.

Note

Ogni tipo integer predefiniti hanno rappresentazioni esatte per i rispettivi valori e falserestituita. A virgola fissa o una rappresentazione razionale viene considerato esatta, ma una rappresentazione a 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

limiti <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe strstreambuf