C中定义的变量是什么意思
问题描述:
你们能告诉我,这在 C 中是什么意思吗?
can you guys tell me, what does this mean in C?
#define Privileged_Data
Privileged_Data static int dVariable
Compiler 寻址变量是否有特定意义?
Is it specific meaningful for Compiler to address variable?
答
这只是一个宏 Privileged_Data
什么都不做.预处理器通过后,编译器甚至不会看到它.
This is just a macro Privileged_Data
doing nothing. The compiler will not even see it after the preprocessor pass.
像这样标记一些变量可能是可读性或公司标准的决定.
It's probably a readability or company standards decision to tag some variables like this.