Re: [问题] C 语言下有类似 Template 的功能吗?

楼主: loveflames (咕啾咕啾魔法阵)   2017-05-24 14:59:25
如果有装boost的话,可以这样做,gcc相容boost.preprocessor
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/tuple/elem.hpp>
#include <boost/preprocessor/iteration/local.hpp>
//这里放每个成员的名称,此例子为3个成员
#define t (aaa,bbb,ccc)
//#的展开规则,所以得分两行写
#define str(s) _str(s)
#define _str(s) #s
//BOOST_PP_LOCAL_MACRO是每一轮的展开,n递增
//这里为函数本体,BOOST_PP_TUPLE_ELEM从上面的t抓token出来,从第一个抓起
#define BOOST_PP_LOCAL_MACRO(n) int BOOST_PP_CAT(get_,BOOST_PP_TUPLE_ELEM(3,n,t))(struct obj_s *self){\
int err_code = checkByMode(self,\
BOOST_PP_CAT(&_common_update_attr_,BOOST_PP_TUPLE_ELEM(3,n,t)),\
str(BOOST_PP_CAT(common_get_,BOOST_PP_TUPLE_ELEM(3,n,t))));\
if (err_code < 0){\
return err_code;\
}\
return (int)self-> BOOST_PP_TUPLE_ELEM(3,n,t);\
}
//表示BOOST_PP_LOCAL_MACRO为0->1->2的展开,即3个成员
#define BOOST_PP_LOCAL_LIMITS (0,2)
//实际展开
#include BOOST_PP_LOCAL_ITERATE()
作者: henry8168 (番薯猴)   2017-05-24 16:14:00
这有点猛!我还在google这段程式码的细节,又有东西学的感觉好爽看得出用法和规律。想问些问题,里面那个n的range是由#define BOOST_PP_LOCAL_LIMITS (0,2) 这行定义的吗然后 #define str(s) _str(s) 和 #define _str(s) #s这种用法有没有网站的详细解说?没这样写过,有点生疏.最后那个BOOST_PP_LOCAL_M..内的 \ 为什么需要写上?我找到的范例也有这些斜线。才学疏浅,不好意思。懂了,这跟console上输入\的意思同样嘛。https://kknews.cc/zh-tw/other/6y5qx3.html我看完这篇帮助满大的 哈哈
作者: descent (“雄辩是银,沉默是金”)   2017-05-24 23:14:00
linux driver 可用 boost 吗?
楼主: loveflames (咕啾咕啾魔法阵)   2017-05-24 23:48:00
boost.preprocessor产生的不是binary,只是source code只要编译器本身吃boost就行要自己刻也是可以,preprocessor有metaprogramming的能力

Links booklink

Contact Us: admin [ a t ] ucptt.com