结构体使用别名声明怎么会编译报错
这个是使用别名声明报错
用原始的List_ 这个就不报错!这个是为什么呀 这两种方式都没问题啊,下面有波浪线肯能是你还没有使用刚刚定义出来的list
#include <stdio.h>
typedef struct List_{
int size;
} List;
int main() {
struct List_ a;
List b;
return 0;
}
都用别名了,就不用加strcut了吧... newu 发表于 2019-6-22 14:44
这两种方式都没问题啊,下面有波浪线肯能是你还没有使用刚刚定义出来的list
你有可能打成了1ist或者小大写错误
页:
[1]