numeric_limits::has_signaling_NaN
測試類型是否有表示非數字 (NAN) 的表示。
static const bool has_signaling_NaN = false;
傳回值
true ,如果型別有收到信號的 NaN 的表示; false 。
備註
收到信號的 NaN 不是數字的編碼,表示它在運算式的存在。 傳回值是 true is_iec559 為 true。
範例
// numeric_limits_has_signaling_nan.cpp
// compile with: /EHsc
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << "Whether float objects have a signaling_NaN: "
<< numeric_limits<float>::has_signaling_NaN
<< endl;
cout << "Whether double objects have a signaling_NaN: "
<< numeric_limits<double>::has_signaling_NaN
<< endl;
cout << "Whether long int objects have a signaling_NaN: "
<< numeric_limits<long int>::has_signaling_NaN
<< endl;
}
需求
標題: <。>
命名空間: std