这是关于内存对齐的。在下面的代码中,我预计结构内 b 的偏移量为 8(32 位机器)。见这里。因此,使得b
总是发生在一个高速缓存行内。然而,事实并非如此。b
全局对象中的成员struct test1
似乎是对齐的。我不确定它是偶然还是编译器故意这样做。
我想了解为什么编译器在a
.
struct test1
{
int a;
double b;
}t1;
int main()
{
struct test1 *p = malloc(sizeof(struct test1));
printf("sizes int %d, float %d, double %d, long double %d\n", sizeof(int), sizeof(float), sizeof(double), sizeof(long double));
printf("offset of b %d\n",(int)&(t1.b)-(int)&(t1));
printf("\naddress of b (on heap) = %p, addr of b (on data seg) = %p\n",&(p->b), &(t1.b));
return 0;
}
输出是...
sizes int 4, float 4, double 8, long double 12
offset of b 4
address of b (on heap) = 0x804a07c, addr of b (on data seg) = 0x80497e0
我在 ubuntu 10.04 上使用标准 gcc 编译器