以下“##”的含义是什么?
#define CC_SYNTHESIZE(varType, varName, funName)\
protected: varType varName;\
public: inline varType get##funName(void) const { return varName; }\
public: inline void set##funName(varType var){ varName = var; }
答案 0 :(得分:6)
运算符##连接两个参数,它们之间不留空格: e.g。
#define glue(a,b) a ## b
glue(c,out) << "test";
这也将被翻译成:
cout << "test";
答案 1 :(得分:1)
答案 2 :(得分:1)
它连接令牌而不会在它们之间留下空白。基本上,如果你没有##那里
public: inline varType getfunName(void) const { return varName; }\
预编译器不会用参数值替换funName
。使用##
,get
和funName
是单独的令牌,这意味着预编译器可以替换funName
,然后连接结果。