std::is_polymorphic (3) Linux Manual Page
std::is_polymorphic – std::is_polymorphic
Synopsis
Defined in header<type_traits>
template <class T>
(since C++ 11)
struct is_polymorphic;
If T is a polymorphic_class (that is, a non-union class that declares or inherits at least one virtual function), provides the member constant value equal true. For any other type, value is false.
If T is a non-union class type, T shall be a complete type; otherwise, the behavior is undefined.
Template parameters
T – a type to check
Helper variable template
template< class T > (since C++17)
inline constexpr bool is_polymorphic_v = is_polymorphic<T>::value;
Inherited from std::integral_constant
Member constants
value true if T is a polymorphic class type , false otherwise
[static]
Member functions
operator bool (public member function)
operator() returns value
(C++14)
Member types
Type Definition
value_type bool
type std::integral_constant<bool, value>
Example
// Run this code
#include <iostream>
#include <type_traits>
struct A {
int m;
};
struct B {
virtual void foo();
};
struct C : B {
};
int main()
{
std::cout << std::boolalpha;
std::cout << std::is_polymorphic<A>::value << '\n';
std::cout << std::is_polymorphic<B>::value << '\n';
std::cout << std::is_polymorphic<C>::value << '\n';
}
Output:
See also
is_class checks if a type is a non-union class type
(C++11)
is_abstract checks if a type is an abstract class type
(C++11)
