Condividi tramite


numeric_limits::signaling_NaN

Restituisce la rappresentazione di una segnalazione non il numero (NAN) per il tipo.

static Type signaling_NaN( ) throw( );

Valore restituito

La rappresentazione di NAN di report per il tipo.

Note

Il valore restituito è significativo solo se has_signaling_NaN è true.

Esempio

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

using namespace std;

int main( )
{
   cout << "The signaling NaN for type float is:  "
        << numeric_limits<float>::signaling_NaN( )
        << endl;
   cout << "The signaling NaN for type int is:  "
        << numeric_limits<int>::signaling_NaN( )
        << endl;
   cout << "The signaling NaN for type long double is:  "
        << numeric_limits<long double>::signaling_NaN( )
        << endl;
}

Esempio di output

Di seguito viene restituito su x86.

The signaling NaN for type float is:  1.#QNAN
The signaling NaN for type int is:  0
The signaling NaN for type long double is:  1.#QNAN

Requisiti

limiti <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe strstreambuf