C 99 变长数组(不完整数组)的支持
在标准C 或者C++ 中由于不支持0 长度的数组,所以int array[0]; 这样的定义是非法的。不过有些编译器的扩展功能支持0 长度的数组。
在C 中,0 长度的数组的主要用途是用来作为结构体的最后一个成员,然后用它来访问此结构体对象之后的一段内存(通常是动态分配的内存)。由于其非标准性,在程序中尽量避免使用0 长度的数组。作为替换,可以使用C99 标准中的不完整数组来替换0 长度的数组定义。如:
struct X {
/* Members */
int array[]; /* Do not write int array[0]; since it is not standard. */
};
一般性应用:
struct A {
int a, b;
char data[0];
/* do not write fields below */
};
struct A *p;
int n = 100, i;
p = malloc(sizeof(struct A) + n);
for (i = 0; i < n; ++i)
p->data[i] = 1;
摘自 redxu的专栏
补充:软件开发 , C语言 ,