numeric_limits::is_exact
Teste se os cálculos feitos em um tipo são livres de erros de arredondamento.
static const bool is_exact = false;
Valor de retorno
true se os cálculos são livres de erros de arredondamento; se não false .
Comentários
Todos os tipos predefinidos têm representações de inteiro exatas para seus valores e falsede retorno.Uma representação de ponto fixo ou racional é considerada também, mas uma representação exata de ponto flutuante não é.
Exemplo
// 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;
}
Requisitos
Cabeçalho: <limits>
namespace: STD