Defined in header
<type_traits> | ||
---|---|---|
template< class T > struct is_empty; | (since C++11) |
If T
is an empty type (that is, a non-union class type with no non-static data members other than bit-fields of size 0, no virtual functions, no virtual base classes, and no non-empty base classes), 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.
T | - | a type to check |
template< class T > constexpr bool is_empty_v = is_empty<T>::value; | (since C++17) |
value
[static]
| true if T is an empty class type , false otherwise (public static member constant) |
operator bool | converts the object to bool , returns value (public member function) |
operator()
(C++14)
| returns value (public member function) |
Type | Definition |
---|---|
value_type | bool |
type | std::integral_constant<bool, value> |
Inheriting from empty base classes usually does not increase the size of a class due to empty base optimization.
std::is_empty<T>
and all other type traits are empty classes.
#include <iostream> #include <type_traits> struct A {}; struct B { int m; }; struct C { virtual ~C(); }; int main() { std::cout << std::boolalpha; std::cout << std::is_empty<A>::value << '\n'; std::cout << std::is_empty<B>::value << '\n'; std::cout << std::is_empty<C>::value << '\n'; }
Output:
true false false
(C++11)
| checks if a type is a non-union class type (class template) |
(library fundamentals TS)
| variable template alias of std::is_empty::value (variable template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/types/is_empty