C++预定义宏

C/C++宏体中出现的#,#@,##:

- #的功能是将其后面的宏参数进行字符串化操作(stringfication),就是对它所引用的宏变量通过替换后在其左右各加上一个双引号

-##被称为连接符(concatenator),用来将两个token连接为一个token。注意这里连接的对象是token就行,而不一定是宏的变量。

举例:

Caffe中Layer的创建:

#define REGISTER_LAYER_CREATOR(type, creator)                                  \  
  static LayerRegisterer<float> g_creator_f_##type(#type, creator<float>);     \  
  static LayerRegisterer<double> g_creator_d_##type(#type, creator<double>)    \ 

http://blog.csdn.net/langb2014/article/details/50991315

 

Tips:

如果串长于一行,可以在该行末尾用一反斜杠' /'续行。

http://blog.csdn.net/blaider/article/details/7578141

posted @ 2016-12-13 00:11  Avril  阅读(801)  评论(0编辑  收藏  举报