std::is_empty
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <type_traits> 中定义
|
||
template< class T > struct is_empty; |
(C++11 起) | |
如果
T
是,EN空类型(即非工会的任何非静态成员以外的位字段的大小为0,没有虚函数,没有虚基类,并没有非空基类的类类型),提供恒value
等于true的成员。对于任何其他类型,value
是false.原文:
If
T
is en empty type (that is, a non-union class type with no non-static 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.目录 |
Inherited from std::integral_constant
Member constants
value [静态的]</div></div>
|
true如果 T is an empty class type ,false其他方式 原文: true if T is an empty class type , false otherwise (公共静态成员常量) |
Member functions
operator bool |
转换的对象bool,返回 value 原文: converts the object to bool, returns value (公共成员函数) |
Member types
类型
|
Definition |
value_type
|
bool
|
type
|
std::integral_constant<bool, value> |
</div>
[编辑] 注释
sizeof(T)总是返回1,如果
T
是空的,但是从空基类继承通常不会增加大小的一类由于空基类优化.原文:
sizeof(T) always returns 1 if
T
is empty, but inheriting from empty base classes usually does not increase the size of a class due to empty base optimization.std::is_empty<T>和所有其他类型的特征是空的类.
原文:
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'; }
输出:
true false false
[编辑] 另请参阅
(C++11) |
检查是否是除union以外的对象类型 (类模板) |