Udostępnij za pośrednictwem


numeric_limits::traps

Testy czy nadlewek i podlewek, która zgłasza na operacje arytmetyczne wyjątki jest zaimplementowana dla typu.

static const bool traps = false;

Wartość zwracana

TRUE Jeśli zaimplementowano nadlewek i podlewek dla danego typu; false Jeśli nie jest.

Przykład

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

using namespace std;

int main( )
{
   cout << "Whether float types have implemented trapping: "
        << numeric_limits<float>::traps
        << endl;
   cout << "Whether double types have implemented trapping: "
        << numeric_limits<double>::traps
        << endl;
   cout << "Whether long int types have implemented trapping: "
        << numeric_limits<long int>::traps
        << endl;
   cout << "Whether unsigned char types have implemented trapping: "
        << numeric_limits<unsigned char>::traps
        << endl;
}
  

Wymagania

Nagłówek:<limity>

Przestrzeń nazw: std

Zobacz też

Informacje

strstreambuf — Klasa