Condividi tramite


numeric_limits::tinyness_before

Verifica se un tipo può determinare se un valore è troppo piccolo per essere rappresentato come valore normalizzato prima di arrotondamento.

static const bool tinyness_before = false;

Valore restituito

true se il tipo può rilevare i valori in minuscolo prima dell'arrotondamento; false se non riesce.

Note

I tipi per rilevare il tinyness sono stati importati come opzione con rappresentazioni in virgola mobile a 559 IEC e la relativa implementazione possono influire su alcuni risultati.

Esempio

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

using namespace std;

int main( )
{
   cout << "Whether float types can detect tinyness before rounding: "
        << numeric_limits<float>::tinyness_before
        << endl;
   cout << "Whether double types can detect tinyness before rounding: "
        << numeric_limits<double>::tinyness_before
        << endl;
   cout << "Whether long int types can detect tinyness before rounding: "
        << numeric_limits<long int>::tinyness_before
        << endl;
   cout << "Whether unsigned char types can detect tinyness before rounding: "
        << numeric_limits<unsigned char>::tinyness_before
        << endl;
}
  

Requisiti

limiti <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe strstreambuf