Udostępnij za pośrednictwem


numeric_limits::min

Zwraca minimalną wartość znormalizowaną dla określonego typu.

static Type min( ) throw( );

Wartość zwracana

Minimalna wartość znormalizowaną dla danego typu.

Uwagi

Znormalizowana wartość minimalna to INT_MIN dla typu int i FLT_MIN dla typu float.Wartość zwracana ma znaczenie jeśli is_bounded jest true lub jeśli is_signed jest false.

Przykład

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

using namespace std;

int main( )
{
   cout << "The minimum value for type float is:  "
        << numeric_limits<float>::min( )
        << endl;
   cout << "The minimum value for type double is:  "
        << numeric_limits<double>::min( )
        << endl;
   cout << "The minimum value for type int is:  "
        << numeric_limits<int>::min( )
        << endl;
   cout << "The minimum value for type short int is:  "
        << numeric_limits<short int>::min( )
        << endl;
}
  

Wymagania

Nagłówek:<limity>

Przestrzeń nazw: std

Zobacz też

Informacje

strstreambuf — Klasa