numeric_limits::quiet_NaN
Zwraca reprezentacja cichej nie liczbą (NAN) dla danego typu.
static Type quiet_NaN( ) throw( );
Wartość zwracana
Reprezentacja cichy NAN dla danego typu.
Uwagi
Wartość zwracana ma znaczenie tylko wtedy, gdy has_quiet_NaN jest true.
Przykład
// 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;
}
Wymagania
Nagłówek:<limity>
Przestrzeń nazw: std