# Story about Macro ![](../img/wechat.jpg) ## 1.The macro contains special symbols Several type:`#`,`##`,`\` ### 1.1 String operator(#) **Using a # before macro parameter,The preprocessor converts this parameter into an array of characters**,In other words:**# is “stringlize”,The#, which appears in the macro definition, is to convert the following parameter into a string **。 **Attention:It can only be used in macro definitions that have passed in parameters, and must be placed before the parameter name in the macro definition body.** For example: ```c++ #define exp(s) printf("test s is:%s\n",s) #define exp1(s) printf("test s is:%s\n",#s) #define exp2(s) #s int main() { exp("hello"); exp1(hello); string str = exp2( bac ); cout<(b) ? (a) \ :(b)) int main() { int max_val = MAX(3,6); cout<0) fun() ``` When this macro is expanded, it will be: ``` if(a>0) f1(); f2(); ``` In order to solve this problem, when writing code, usually can adopt `{}`。 ex: ```c++ #define fun() {f1();f2();} if(a>0) fun(); // 宏展开 if(a>0) { f1(); f2(); }; ``` However, you will find that there is a semicolon after the macro is expanded, so the actual syntax is not correct.(Although the compiler runs well, there is no semicolon). ### 2.2 Avoid using goto to control flow In some functions, we may need to do some cleaning before the return statement, such as releasing the memory space requested by malloc at the beginning of the function. Using goto is always a simple method: ```c++ int f() { int *p = (int *)malloc(sizeof(int)); *p = 10; cout<<*p<