Udostępnij za pośrednictwem


numeric_limits::epsilon

Funkcja zwraca różnicę między 1 i najmniejszą wartość większą niż 1, który jest reprezentowanych dla typu danych.

static Type epsilon( ) throw( );

Wartość zwracana

Różnica między 1 a najmniejszą wartość większą niż 1, który jest reprezentowanych dla typu danych.

Uwagi

Wartość jest FLT_EPSILON dla typu float.epsilondla typu jest najmniejsza dodatnia liczba zmiennoprzecinkowa N takie, że N + epsilon + N jest reprezentowanych.

Przykład

// 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;
}
  

Wymagania

Nagłówek:<limity>

Przestrzeń nazw: std

Zobacz też

Informacje

strstreambuf — Klasa