我是靠谱客的博主 隐形牛排,最近开发中收集的这篇文章主要介绍C语言__attribute__(packed)属性,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在公司实习的时候,看到了这个属性的应用,做个总结:

其实很简单:程序中没有__attribute__(packed),优化对齐,一般是4字节对齐,的话,紧凑型,不对齐,是多少就是多少。上代码:

#include<stdio.h>
struct unpacked_str{
char c;
int x;
};
struct packed_str{
char c;
int x;
}__attribute__((packed));
int main()
{
    printf("size of char=%dn",sizeof(char));
    printf("size of int=%dn",sizeof(int));
    printf("size of unpacked_str=%dn",sizeof(struct unpacked_str));
    printf("size of packed_str=%dn",sizeof(struct packed_str));
}

在codeblocks 17.12中运行结果如下:

但结果差强人意,第二个应该是5的,不知道是不是和编译器有关,这是我用的编译器。

是不是编译器的问题还需要确认,如果后续我得到了正确答案,我会更博的。

 

最后

以上就是隐形牛排为你收集整理的C语言__attribute__(packed)属性的全部内容,希望文章能够帮你解决C语言__attribute__(packed)属性所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部