最佳答案
我有以下密码:
#include <stdio.h>
int
main(void)
{
float a[4] __attribute__((aligned(0x1000))) = {1.0, 2.0, 3.0, 4.0};
printf("%p %p %p %p\n", &a[0], &a[1], &a[2], &a[3]);
}
我有以下输出:
0x7fffbfcd2da0 0x7fffbfcd2da4 0x7fffbfcd2da8 0x7fffbfcd2dac
为什么 a[0]
的地址不是 0x1000
的倍数?
__attribute__((aligned(x)))
到底是做什么的? 我误解了 这个的解释?
我用的是 gcc 4.1.2。