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 void (*funcptr)(void) typedef void (*PFV)(); typedef int32_t (*PFI)();