is_base_of 類別
測試某個類型是否為另一個類型的基底。
語法
template <class Base, class Derived>
struct is_base_of;
參數
Base
要測試的基底類別。
派生
要測試的衍生類型。
備註
如果基底型別是衍生型別的基類,則類型述詞的實例會保留 true,否則為 false。
範例
#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);
}
is_base_of<base, base> == true
is_base_of<base, derived> == true
is_base_of<derived, base> == false
需求
標頭:<type_traits>
命名空間:std