// C++03
static const bool has_infinity;
// C++11
static constexpr bool has_infinity;
概要
浮動小数点数型において、型T
が正の無限表現を持っているかどうかを判定する。
is_iec559 != false
が成り立つ場合は常にtrue
である。
例
#include <iostream>
#include <limits>
int main()
{
constexpr bool a = std::numeric_limits<int>::has_infinity;
constexpr bool b = std::numeric_limits<float>::has_infinity;
constexpr bool c = std::numeric_limits<double>::has_infinity;
std::cout << std::boolalpha;
std::cout << "int : " << a << std::endl;
std::cout << "float : " << b << std::endl;
std::cout << "double : " << c << std::endl;
}
出力
int : false
float : true
double : true