is_function Class
,如果类型是函数类型,测试。
template<class Ty>
struct is_function;
参数
- Ty
查询的类型。
备注
该类型特性的实例适合,如果类型 Ty 是函数类型,否则它包含错误。
示例
// std_tr1__type_traits__is_function.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
struct functional
{
int f();
};
int main()
{
std::cout << "is_function<trivial> == " << std::boolalpha
<< std::is_function<trivial>::value << std::endl;
std::cout << "is_function<functional> == " << std::boolalpha
<< std::is_function<functional>::value << std::endl;
std::cout << "is_function<float()> == " << std::boolalpha
<< std::is_function<float()>::value << std::endl;
return (0);
}
要求
**标题:**type_traits
命名空间: std