宏定义:
#define SMART_LOG(fmt, args...) \
ULOG("[%d]" fmt, __LINE__, ## args);
使用示例:
SMART_LOG("count =%d,time=%d\n", count ,time);
等价于==》ULOG("[%d]" "count =%d,time=%d\n", __LINE__,count ,time);
#include<cstdio>
#include<iostream>
using namespace std;
#define f(a,b) a##b
#define d(a) #a
#define s(a) d(a)
int main()
{
int xy = 10;
cout<< f(x,y) << endl;
puts( d(f(a,b));
puts( s(f(a,b) );
}
输出
10
f(a,b)
ab
分析:
1 # 使在#后的首个参数返回为一个带引号的字符串; ##把两个符号连起来是把##前后两个符号连接起来
2,不以"#"开头的,先展开参数a,然后是替换代码:puts(s(f(a,b)));-->puts(s(ab))-->puts(d(ab))-->puts("ab")
3,以"#"开头的,直接替换,不展开:puts(d(f(a,b)))-->puts("f(a,b)")