关于结构体对齐

Posted 立体风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于结构体对齐相关的知识,希望对你有一定的参考价值。

为了硬件能够快速访问,数据在内存中要对齐(参考集装箱)。这里主要说一下结构体的对齐。

1、结构体内元素的大小,又下一个字节决定。

2、系统默认4个字节对齐方式。

#include <stdio.h>
struct s{
    char b;
    int c;
};
int main(){
    struct s s1;
    s1.b=t;
    s1.c=12;
    printf("s1 size is %zu\n",sizeof(s1));
    char *p1=(void *)&s1;
    printf("s1.b=%c\n",*p1);
    int *p2=(void *)&s1+1;
    printf("s1.c=%d\n",*p2);
    int *p3=(void *)&s1+4;
    printf("s1.c=%d\n",*p3);
   
    return 0;
}

输出结果:

[email protected]:~$ make t4
cc -g -std=c99    t4.c   -o t4
[email protected]:~$ ./t4
s1 size is 8
s1.b=t
s1.c=201326592
s1.c=12

 

以上是关于关于结构体对齐的主要内容,如果未能解决你的问题,请参考以下文章

关于结构体对齐

关于结构体内存对齐方式的总结(#pragma pack()和alignas())

Visual Studio2008 C++结构体成员需要内存对齐吗?

sizeof(结构体) = ?

编译器之WIN64预定义宏和数据对齐设置对结构体大小的影响

2017-07-01Linux应用开发工程师面试问题记录之二:关于结构体的大小及内存对齐问题