C 参考手册

位置:首页 > C 参考手册 >类型支持 > max_align_t

定义于头文件 <stddef.h>
typedef /*implementation-defined*/ max_align_t;
(C11 起)

max_align_t 是对齐要求至少和其他任何一种标量类型一样严格(一样大)的类型。

注意

malloc 的分配函数所返回的指针为任意对象对齐,这表示它们至少和 max_align_t 一样严格。

max_align_t 通常是最大标量类型的同义词,在大多数平台上为 long double ,其对齐要求为 8 或 16 。

示例

#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.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

参阅