Condividi tramite


numeric_limits::is_bounded

Verifica se l'insieme di valori che un tipo può rappresentare è limitato.

static const bool is_bounded = false;

Valore restituito

true se il tipo presenta un set limitato di valori rappresentabili; se non false.

Note

Tutti i tipi predefiniti presentano un set limitato di valori rappresentabili e di truerestituita.

Esempio

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

Requisiti

limiti <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe strstreambuf