struct sdshdr {
long len;
long free;
char buf[];
};
如上,这个 char buf[] 竟然不占内存,在 64 位系统 sizeof(long)=8,sizeof(sdshdr)=16 。问题是这个 buf 为什么不占内存,不能理解为 char * ?然后使用中 sdshdr * newsds = (sdshdr * )malloc(sizeof(sdshdr) + initlen + 1),newsds->buf 又可以操作后面的字符。
1
pocarisweat 2020-07-23 19:49:41 +08:00 3
这是 c99 的新语法,只能放在最后,多分配出来的内存就可以当作这个数组的内容。char buf[0]意思差不多
|
2
linvon 2020-07-23 19:54:32 +08:00 2
搜索 柔性数组
|
3
dayoushen OP 谢 1,2 楼,懂了。
|
4
wnpllrzodiac 2020-07-24 07:36:55 +08:00 via Android
老的书写的东西都不对了,尴尬。
|