Compartilhar via


numeric_limits::epsilon

A função retorna a diferença entre 1 e o menor valor maior que 1 que é representável para o tipo de dados.

static Type epsilon( ) throw( );

Valor de retorno

A diferença entre 1 e o menor valor maior que 1 que é representável para o tipo de dados.

Comentários

o valor é FLT_EPSILON para o tipo float.epsilon para um tipo é o número de ponto flutuante Em tais menor do que Em + epsilon + são representável Em .

Exemplo

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

using namespace std;

int main( )
{
   cout << "The difference between 1 and the smallest "
        << "value greater than 1\n for float objects is: " 
        << numeric_limits<float>::epsilon( ) 
        << endl;
   cout << "The difference between 1 and the smallest "
        << "value greater than 1\n for double objects is: " 
        << numeric_limits<double>::epsilon( ) 
        << endl;
   cout << "The difference between 1 and the smallest "
        << "value greater than 1\n for long double objects is: " 
        << numeric_limits<long double>::epsilon( ) 
        << endl;
}
  

Requisitos

Cabeçalho: <limits>

namespace: STD

Consulte também

Referência

strstreambuf Class