码迷,mamicode.com
首页 > 编程语言 > 详细

零长数组

时间:2014-11-10 19:22:07      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   sp   for   div   on   

Arrays of Length Zero

这样说:

Zero-length arrays are allowed in GNU C. They are very useful as the last element of a structure that is really a header for a variable-length object

零长数组在GNU C中是允许的。结构体中最后一个元素,把他用作变长对象的头。Flexible array 即柔性数组。

但是在C++中,C++约定每个对象在内存中有唯一的地址,故零长数组在C++中其实长度是1

struct line {
       int length;
       char contents[0];
};
struct line *thisline = (struct line *) malloc (sizeof (struct line) + this_length);
thisline->length = this_length;

可能会有疑问这里为何不直接搞一个指针和len即可?

如果用指针的话,这里不能保证变长对象的地址和结构体连续。这里就是柔性数组的好处。

内存的连续:

  • 提升访问速度
  • 方便释放

零长数组

标签:style   blog   http   color   ar   sp   for   div   on   

原文地址:http://www.cnblogs.com/stevinwang/p/4087597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!