std::is_standard_layout
来自 cppreference.com
定义在头文件 <type_traits> 中 |
||
template< class T > struct is_standard_layout; |
(自 C++11 起) | |
std::is_standard_layout
是一个 UnaryTypeTrait.
如果 T
是一个 标准布局类型,则提供成员常量 value
,其值为 true。对于任何其他类型,value
为 false.
如果 std::remove_all_extents_t<T> 是一个不完整类型,而不是 (可能限定了 cv 的) void,则行为未定义。
如果程序为 std::is_standard_layout
或 std::is_standard_layout_v
添加了特化,则行为未定义。
内容 |
[编辑] 模板参数
T | - | 要检查的类型 |
[编辑] 帮助程序变量模板
template< class T > constexpr bool is_standard_layout_v = is_standard_layout<T>::value; |
(自 C++17 起) | |
继承自 std::integral_constant
成员常量
value [静态] |
true 如果 T 是标准布局类型,否则为 false(公共静态成员常量) |
成员函数
operator bool |
将对象转换为 bool,返回 value (公共成员函数) |
operator() (C++14) |
返回 value (公共成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |
[编辑] 注释
指向标准布局类的指针可以 (使用 reinterpret_cast) 转换为指向其第一个非静态数据成员的指针,反之亦然。
如果一个标准布局联合包含两个或多个标准布局结构,则允许检查它们的公共初始部分。
宏 offsetof 仅保证可用于标准布局类。
[编辑] 示例
运行此代码
#include <type_traits> struct A { int m; }; static_assert(std::is_standard_layout_v<A> == true); class B: public A { int m; }; static_assert(std::is_standard_layout_v<B> == false); struct C { virtual void foo(); }; static_assert(std::is_standard_layout_v<C> == false); int main() {}
[编辑] 缺陷报告
以下更改行为的缺陷报告已追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确行为 |
---|---|---|---|
LWG 2015 | C++11 | T 可以是不完整类类型的数组,其边界未知 |
在这种情况下,行为 未定义 |
[编辑] 另请参阅
(C++11) |
检查类型是否可以平凡复制 (类模板) |
(C++11)(C++20 中已弃用) |
检查类型是否为简单旧数据 (POD) 类型 (类模板) |
从 标准布局 类型的开头到指定成员的字节偏移量 (函数宏) |