打印

c语言中长度为0的数组妙用

[复制链接]
1992|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
xnwxq|  楼主 | 2009-8-25 20:35 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
长度为0的数组在GNU C是可以使用的,在定义一个变长对象的结构体是非常有用的。
请看下例。
struct line {
int length;
char contents[0];
};
struct line *thisline = (struct line *)
malloc (sizeof (struct line) + this_length);
thisline->length = this_length;
    显然这样的代码要比下面的定义节省空间
struct line {
int length;
char *contents;
};
struct line {
int length;
char contents[1];
};

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

个人签名:我们都是风雨中的孩子,手牵着手才不会跌倒

162

主题

294

帖子

1

粉丝