is_base_of 类

测试,如果另一类型是的基础。

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

请参见

参考

<type_traits>

is_convertible 类

其他资源

type_traits 成员