is_polymorphic 类
测试,如果类型具有一个虚函数。
template<class Ty>
struct is_polymorphic;
参数
- Ty
查询的类型。
备注
谓词应用类型的实例,如果类型 Ty 为声明或已继承虚函数的类,否则它对负错误。
示例
// std_tr1__type_traits__is_polymorphic.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
struct throws
{
throws() throw(int)
{
}
throws(const throws&) throw(int)
{
}
throws& operator=(const throws&) throw(int)
{
}
virtual ~throws()
{
}
int val;
};
int main()
{
std::cout << "is_polymorphic<trivial> == " << std::boolalpha
<< std::is_polymorphic<trivial>::value << std::endl;
std::cout << "is_polymorphic<throws> == " << std::boolalpha
<< std::is_polymorphic<throws>::value << std::endl;
return (0);
}
要求
标头: <type_traits>
命名空间: std