is_base_of Class
,如果一个类型是另一个的基础,测试。
template<class Base, class Derived>
struct is_base_of;
参数
Base
测试的基类为。Derived
测试的派生类型为。
备注
该类型特性的实例适合,如果类型 Base 是类型 Derived的基类,否则它包含错误。
示例
// 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