我在下面测试一个程序:
#include <stdio.h>
#include <stdlib.h>
typedef struct _node_t {
int id;
int contents[0];
}node_t;
int
main(int argc, char* argv[])
{
printf("sizeof node_t is: %d\n", sizeof (struct _node_t)); // output: 4
node_t *node = (node_t*)malloc(sizeof(node_t) + sizeof(int) * 3);
printf("sizeof node is: %d\n", sizeof (node)); // output: 8
return 0;
}
节点瞬间的大小是8。但是,在malloc
函数中,我在结构中添加了额外的3个整数node
。为什么节点大小的输出仍然是8?
PS:gcc(GCC)4.6.3 20120306(红帽4.6.3-2)