std::is_standard_layout
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <type_traits> 中定义
|
||
template< class T > struct is_standard_layout; |
(C++11 起) | |
T
是一个标准的布局类型(即标量类型,一个标准布局类,或者一个数组的类型/类,可能CV合格的),提供会员value
等于true。对于任何其他类型,value
是false.原文:
If
T
is a standard layout type (that is, a scalar type, a standard-layout class, or an array of such type/class, possibly cv-qualified), provides the member constant value
equal true. For any other type, value
is false.一个标准布局类是一个类
原文:
A standard-layout class is a class that
1。有没有非静态数据成员不是标准布局
原文:
1. has no non-static data members that aren't standard-layout
2。没有虚函数,和无虚基类的
原文:
2. has no virtual functions and no virtual base classes
3。所有非静态数据成员具有相同的访问控制
原文:
3. has the same access control for all non-static data members
4。没有基类的标准布局
原文:
4. has no base classes that aren't standard-layout
5。或者没有基类的非静态数据成员,或有没有非静态数据成员中最派生类,其中只有一个基地
原文:
5. either has no base class with non-static data members or has no non-static data members in the most derived class and only one base with them
6。有没有基类的相同类型的第一个非静态数据成员
原文:
6. has no base classes of the same type as the first non-static data member
目录 |
Inherited from std::integral_constant
Member constants
value [静态的]</div></div>
|
true如果 T is a standard-layout type ,false其他方式 原文: true if T is a standard-layout 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>
[编辑] 注释
一个标准布局类的指针可以转换与reinterpret_cast的一个指针,指向第一个非静态数据成员,反之亦然.
原文:
A pointer to a standard-layout class may be converted (with reinterpret_cast) to a pointer to its first non-static data member and vice versa.
如果的标准布局工会的持有两个或两个以上标准的布局结构,它允许检查的一部分,他们共同的初始.
原文:
If a standard-layout union holds two or more standard-layout structs, it is permitted to inspect the common initial part of them.
宏offsetof只能用于与标准布局类.
原文:
The macro offsetof can only be used with standard-layout classes.
[编辑] 示例
#include <iostream> #include <type_traits> struct A { int m; }; struct B { int m1; private: int m2; }; struct C { virtual void foo(); }; int main() { std::cout << std::boolalpha; std::cout << std::is_standard_layout<A>::value << '\n'; std::cout << std::is_standard_layout<B>::value << '\n'; std::cout << std::is_standard_layout<C>::value << '\n'; }
输出:
true false false
[编辑] 另请参阅
(C++11) |
检查类型是否可以通过简单拷贝内存完成拷贝 (类模板) |
(C++11) |
检查是否是传统C数据结构(POD)类型 (类模板) |
标准布局类型的成员相对类型起始地址的字符偏移量 (函数宏) |