is_base_of Class
Testy, jeśli jest jeden typ bazowy innego.
template<class Base, class Derived>
struct is_base_of;
Parametry
Base
Klasy podstawowej do testowania.Derived
Typ pochodny do testowania.
Uwagi
Wystąpienie predykat typu posiada true, jeśli typ Base jest klasą bazową typu Derived, w przeciwnym razie przechowuje wartość false.
Przykład
// 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);
}
Wymagania
Nagłówek: <type_traits>
Obszar nazw: std
Zobacz też
Informacje
Inne zasoby
<type_traits> Członkowie