- 论坛徽章:
- 0
|
终于了解什么情况了。
郁闷。
代码如下:
#include <stdio.h>
typedef struct data{
int i;
struct data * const next;
}DATA;
int main()
{
DATA b = {2, NULL};
DATA a = {1, &b};
DATA * head = &a;
a.next->i = 5;
while (head)
{
printf("%d\n",head->i);
head = head->next;
}
return 0;
}
在ubuntu 8.04中gcc编译ok,运行ok!
同样的代码在VC里面报错:
……(29) : error C2552: 'b' : non-aggregates cannot be initialized with initializer list
……(30) : error C2552: 'a' : non-aggregates cannot be initialized with initializer list
在ADS(ARM开发环境里面),同样编译不通过,但是提示b不是常量,在b之前加上static就通过了。 |
|