is_base_of Class
如果一個型別是另一個基底的測試。
template<class Base, class Derived>
struct is_base_of;
參數
Base
若要測試的基底類別。Derived
若要測試衍生的型別。
備註
如果為 true,則保留型別述詞的執行個體的型別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>
Namespace: 標準