C++ 中的 #define 预处理器是什么?
`#define` 创建一个宏,它将标识符或参数化标识符与标记字符串关联起来。宏定义后,编译器可以将标记字符串替换为源文件中标识符的每次出现。
#define identifier token-string
这就是预处理器的使用方法。`#define` 指令使编译器将标记字符串替换为源文件中标识符的每次出现。仅当标识符构成标记时才会替换标识符。也就是说,如果标识符出现在注释、字符串中或作为较长标识符的一部分,则不会替换它。
示例
#include<iostream> #define MY_VAR 55 using namespace std; int main() { int x = 10; cout << x + MY_VAR; // After preprocessing this expression becomes: x + 55 return 0; }
输出
这将给出以下输出:
65
您可以在 MSDN 上阅读有关 `#define` 指令的更多信息 https://docs.microsoft.com/en-us/cpp/preprocessor/hash-define-directive-c-cpp
广告