次の方法で共有


numeric_limits::quiet_NaN

型の静寂の数値でない (NAN) 参照を返します。

static Type quiet_NaN( ) throw( );

戻り値

型のしました。な nan の表示

解説

戻り値は has_quiet_NaNtrueである場合にのみ意味を持ちます。

使用例

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

必要条件

ヘッダー: <limits>

名前空間: std

参照

関連項目

strstreambuf Class