is_floating_point Class
,如果类型是浮点,测试。
template<class Ty>
struct is_floating_point;
参数
- Ty
查询的类型。
备注
该类型特性的实例适合,如果类型 Ty 是浮点类型或浮点类型的 cv-qualified 窗体,否则它包含错误。
浮点类型是一个 float、 double或 long double。
示例
// std_tr1__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);
}
要求
**标题:**type_traits
命名空间: std