c++ # x 表示 将 x 字符串化
c++ a##1 表示 连接的意思,将参数连接在一起
下面 上代码:
// testjin.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#define test(a) printf("hello"#a)
#define testjj(a) printf("%d",a##_1)
int _tmain(int argc, _TCHAR* argv[])
{
test(c++);
printf("\n");
int x_1 = 1000;
testjj(x);
return 0;
}
输出:
helloc++
1000