std::max_align_t
来自 cppreference.com
定义在头文件 <cstddef> 中 |
||
typedef /*implementation-defined*/ max_align_t; |
(自 C++11 起) | |
std::max_align_t
是一个 平凡 标准布局 类型,其 对齐要求 至少与所有标量类型的对齐要求一样严格(大)。
内容 |
[编辑] 注释
由分配函数(如 std::malloc)返回的指针适合对齐任何对象,这意味着它们的对齐方式至少与 std::max_align_t
一样严格。
[编辑] 示例
运行此代码
#include <cstddef> #include <iostream> int main() { std::cout << alignof(std::max_align_t) << '\n'; }
可能的输出
16
[编辑] 参考
- C++23 标准 (ISO/IEC 14882:2024)
- 17.2.4 大小、对齐方式和偏移量 [support.types.layout] (p: 504-505)
- C++20 标准 (ISO/IEC 14882:2020)
- 17.2.4 大小、对齐方式和偏移量 [support.types.layout] (p: 507-508)
- C++17 标准 (ISO/IEC 14882:2017)
- 21.2.4 大小、对齐方式和偏移量 [support.types.layout] (p: 479)
- C++14 标准 (ISO/IEC 14882:2014)
- 18.2 类型 [support.types] (p: 443-444)
- C++11 标准 (ISO/IEC 14882:2011)
- 18.2 类型 [support.types] (p: 454-455)
[编辑] 参见
alignof 运算符(C++11) |
查询类型的对齐要求 |
(C++11) |
获取类型的对齐要求 (类模板) |
(C++11) |
检查类型是否为标量类型 (类模板) |
C 文档 for max_align_t
|