命名空间
变体
操作

max_align_t

来自 cppreference.com
< c‎ | 类型
定义在头文件 <stddef.h>
typedef /*implementation-defined*/ max_align_t;
(自 C11 起)

max_align_t 是一种类型的对齐要求至少与所有标量类型的对齐要求一样严格(或大)。

内容

[编辑] 说明

分配函数(如 malloc)返回的指针适合对齐任何对象,这意味着它们至少与 max_align_t 一样严格地对齐。

[编辑] 示例

#include <inttypes.h>
#include <stdalign.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
 
int main(void)
{
    size_t a = alignof(max_align_t);
    printf("Alignment of max_align_t is %zu (%#zx)\n", a, a);
 
    void *p = malloc(123);
    printf("The address obtained from malloc(123) is %#" PRIxPTR"\n",
            (uintptr_t)p);
    free(p);
}

可能的输出

Alignment of max_align_t is 16 (0x10)
The address obtained from malloc(123) is 0x1fa67010

[编辑] 参考文献

  • C23 标准 (ISO/IEC 9899:2024)
  • 7.19 公共定义 <stddef.h> (p: TBD)
  • C17 标准 (ISO/IEC 9899:2018)
  • 7.19 公共定义 <stddef.h> (p: 211)
  • C11 标准 (ISO/IEC 9899:2011)
  • 7.19 公共定义 <stddef.h> (p: 288)

[编辑] 另请参阅

C++ 文档 for max_align_t