C++ 概念: StandardLayoutType
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
指定一个类型是标准的布局类型。标准配置的类型与在其他编程编写的代码进行通信,可用于语言
原文:
Specifies that a type is 标准的布局类型. Standard layout type are useful for communicating with code written in other programming languages.
注意,该标准没有定义或概念,这个名字的命名要求。这是一种由核心语言定义的类别。作为唯一的一致性的概念,它包括在这里.
原文:
Note, that the standard doesn't define a named requirement or concept with this name. This is a type category defined by the core language. It is included here as concept only for consistency.
[编辑] 要求
- 没有虚函数或虚基类原文:Has no virtual functions or virtual base classes
- 第一非静态成员类型是不是一个基类原文:The first non-static member type is not a base class
[编辑] 另请参阅
(C++11) |
检查是否是一个标准布局类型 (类模板) |