struct与sizeof那些事


最近赶场去刷各公司笔试题,经常遇到struct结构体所占大小问题,在这里跟各位探讨下,有不同意见,欢迎讨论。
假如在64系统下做如下声明


 struct s
{
    char c;
    short b;
    char d;  
};

sizeof(s)是多少?


 struct t
{
    char a;
    short b;
    int c;

}

sizeof(t)是多少?

struct

mikicn 9 years, 2 months ago

可以参考下我之前对《一个类的大小》问题的回答:
http://segmentfault.com/q/1010000003480000/a-1020000003480067

omni2z answered 9 years, 2 months ago

Your Answer