is_base_of 類別
測試,如果一個型別是類別的基底。
template<class Base, class Derived>
struct is_base_of;
參數
Base
測試的基底類別為。Derived
要測試的衍生型別對於。
備註
這個型別述詞的執行個體之型別,則 Base 為 Derived型別的基底類別,否則它保留 false。
範例
// std_tr1__type_traits__is_base_of.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct base
{
int val;
};
struct derived
: public base
{
};
int main()
{
std::cout << "is_base_of<base, base> == " << std::boolalpha
<< std::is_base_of<base, base>::value << std::endl;
std::cout << "is_base_of<base, derived> == " << std::boolalpha
<< std::is_base_of<base, derived>::value << std::endl;
std::cout << "is_base_of<derived, base> == " << std::boolalpha
<< std::is_base_of<derived, base>::value << std::endl;
return (0);
}
需求
標題: <type_traits>
命名空間: std