Condividi tramite


numeric_limits::quiet_NaN

Restituisce la rappresentazione di inattività non numerico (NAN) per il tipo.

static Type quiet_NaN( ) throw( );

Valore restituito

La rappresentazione di NAN calma per il tipo.

Note

Il valore restituito è significativo solo se has_quiet_NaN è true.

Esempio

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

using namespace std;

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

Requisiti

limiti <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe strstreambuf