aiaa5505 发表于 2019-6-22 11:01:57

结构体使用别名声明怎么会编译报错


这个是使用别名声明报错

用原始的List_ 这个就不报错!这个是为什么呀

newu 发表于 2019-6-22 14:44:01

这两种方式都没问题啊,下面有波浪线肯能是你还没有使用刚刚定义出来的list
#include <stdio.h>

typedef struct List_{
        int size;
} List;

int main() {
        struct List_ a;
        List b;
        return 0;
}

wjp 发表于 2019-6-23 18:47:17

都用别名了,就不用加strcut了吧...

AmosAlbert 发表于 2019-7-19 12:24:01

newu 发表于 2019-6-22 14:44
这两种方式都没问题啊,下面有波浪线肯能是你还没有使用刚刚定义出来的list



   

AmosAlbert 发表于 2019-8-1 15:47:27

你有可能打成了1ist或者小大写错误
页: [1]
查看完整版本: 结构体使用别名声明怎么会编译报错