is_floating_point クラス
型が浮動小数点かどうかをテストします。
構文
template <class Ty>
struct is_floating_point;
パラメーター
Ty
照会する型。
解説
型 Ty が浮動小数点型または浮動小数点型の cv-qualified
形式である場合、型述語のインスタンスは true を保持します。それ以外の場合は、false を保持します。
浮動小数点型は、float
、double
、long double
のいずれかです。
例
// std__type_traits__is_floating_point.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
int main()
{
std::cout << "is_floating_point<trivial> == " << std::boolalpha
<< std::is_floating_point<trivial>::value << std::endl;
std::cout << "is_floating_point<int> == " << std::boolalpha
<< std::is_floating_point<int>::value << std::endl;
std::cout << "is_floating_point<float> == " << std::boolalpha
<< std::is_floating_point<float>::value << std::endl;
return (0);
}
is_floating_point<trivial> == false
is_floating_point<int> == false
is_floating_point<float> == true
要件
ヘッダー: <type_traits>
名前空間: std