#include <iostream>
using namespace std;
/*
规则1:
用宏定义表达式时,要使用完备的括号。
#define RECTANGLE_AREA(a, b) ((a) * (b))
规则2:
规则5.2 将宏所定义的多条表达式放在大括号中。
说明:更好的方法是多条语句写成do while(0)的方式。
*/
#define test 1+2+3
//define只是一个简单的替换, 最好加个括号。
#define test_brackets (1 + 2 + 3)
//换行,添加\之后应该立即回车, 否则会报错。作用类似于未完代续。
#define test_newline (1 \
+ 2 + 3\
)
void printFoo(int x)
{
cout << "2--> " << x << endl;
}
//如果有变量的话, 需要(x)
#define foo(x) \
cout << "1--> " << x << endl;\
printFoo(x);
//这种方式是最符合规范的。
#define foo_do_while(x)\
do\
{\
cout << "1--> " << x << endl;\
printFoo(x);\
}while(0)
//######################################
//define #的使用与##的使用
#define no_symbol(x) (x)
#define one_symbol(x) (#x)
//连接两个对象但并不是转换连接两个字符串。
#define two_symbol(x, y) x##y
//宏参数: err_msg
//前两个是连接, 后一个是转换成字符串。
#define log(err_msg) {cout << "err_msg is "###err_msg << endl;}
#define log(err_msg) {cout << "err_msg is "#err_msg << endl;}
int main()
{
cout << test << endl;
cout << test*test << endl;
cout << test_brackets * test_brackets << endl;
cout << test_newline << endl;
foo(20);
foo(30);
cout << no_symbol("haha") << endl;
cout << one_symbol(haha) << endl;
cout << two_symbol("haha", "ahah")<< endl;
//这样做会自动拼接字符串。
cout << "HELLO""THE""WORLD"<< endl;
log(pointer is null)
system("pause");
}
详细定义: https://blog.csdn.net/shuzfan/article/details/52860664