共用方式為


numeric_limits::has_quiet_NaN

測試類型是否為靜態數字 (NAN) 的表示, nonsignaling。

static const bool has_quiet_NaN = false;

傳回值

true ,如果 type 有安靜 NaN 的表示; false

備註

安靜 NaN 不是數字的編碼方式,不表示其在運算式的存在。 is_iec559 ,則為 true,則傳回值為 true

範例

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

using namespace std;

int main( )
{
   cout << "Whether float objects have quiet_NaN: "
        << numeric_limits<float>::has_quiet_NaN 
        << endl;
   cout << "Whether double objects have quiet_NaN: "
        << numeric_limits<double>::has_quiet_NaN 
        << endl;
   cout << "Whether long int objects have quiet_NaN: " 
        << numeric_limits<long int>::has_quiet_NaN 
        << endl;
}
  

需求

標題: <。>

命名空間: std

請參閱

參考

strstreambuf 類別