C++编译错误"a storage class can only be specified for objects and functions"解决方法
昨天在写积分器控制程序的时候,类里面定义了一个枚举类型,编译的时候出现了上述错误,造成错误的原因是在这个枚举类型前面有static修饰符,如下:staticenumcmd{IntHelp,IntDelayCharge,IntDelayDisCharge,IntStandard,IntPulse};去掉前面的static编译通过。对于这个错误,顾名思义,就是"storageclass"的修饰符用在了