typedef static int INT32为什么编译失败了?

Posted weiyouqing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typedef static int INT32为什么编译失败了?相关的知识,希望对你有一定的参考价值。

1.为什么这样定义编译时候会报错:error: multiple storage classes in declaration specifiers

typedef static int INT32

百度搜到的答案:typedef是存储类的关键字,和auto、static、register一样是存储类关键字,所以在使用typedef时不能再出现其他存储类的关键字;

以上是关于typedef static int INT32为什么编译失败了?的主要内容,如果未能解决你的问题,请参考以下文章

不同系统下的字长------typedef的意义

typedef void (*funcptr)(void) typedef void (*PFV)(); typedef int32_t (*PFI)();

STM32bootload——typedef void (*Fun) (void) 理解

typedef void (*Fun) (void)

typedef void (*Fun) (void)

typedef int a[10]; int str[10]; a b; a* c[10]; a* d; 不懂