is_polymorphic 類別
測試,如果型別具有虛擬函式。
template<class Ty>
struct is_polymorphic;
參數
- Ty
查詢的型別。
備註
這個型別述詞的執行個體之型別,則為 Ty 所宣告或繼承虛擬函式的類別,否則它保留 false。
範例
// 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