Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
static 不适用于该类型。static 适用于 x 的存储位置/可见性(取决于其声明的位置)
存储类说明符和类型限定符是完全不同的东西。类型限定符 ( const, volatile, or restrict) 是类型的一部分,而存储类说明符 ( typedef, extern, static, auto, or register) 是声明的一部分。
const
volatile
restrict
typedef
extern
static
auto
register
如果您指的是 C99,请参阅6.7.1 存储类说明符和6.7.3 类型限定符。