Compartilhar via


numeric_limits::epsilon

A função retorna a diferença entre 1 e o menor valor maior que 1 que é representable 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 é representable 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 positivo o menor Em modo que N + + epsilonEm são representable.

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

limites <deCabeçalho: >

Namespace: std

Consulte também

Referência

Classe strstreambuf