Compartilhar via


numeric_limits::is_bounded

Testa se o conjunto de valores que pode representar um tipo é finito.

static const bool is_bounded = false;

Valor de retorno

true se o tipo tem um conjunto limitado de valores representable; false caso contrário.

Comentários

Todos os tipos predefinidos têm um conjunto limitado de valores representable e de truede retorno.

Exemplo

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

using namespace std;

int main( )
{
   cout << "Whether float objects have bounded set "
        << "of representable values: "
        << numeric_limits<float>::is_bounded
        << endl;
   cout << "Whether double objects have bounded set "
        << "of representable values: "
        << numeric_limits<double>::is_bounded
        << endl;
   cout << "Whether long int objects have bounded set "
        << "of representable values: "
        << numeric_limits<long int>::is_bounded
        << endl;
   cout << "Whether unsigned char objects have bounded set "
        << "of representable values: "
        << numeric_limits<unsigned char>::is_bounded
        << endl;
}
  

Requisitos

limites <deCabeçalho: >

Namespace: std

Consulte também

Referência

Classe strstreambuf