分享
 
 
 

boost::iterator_adaptor (I)

王朝other·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

发信人: huxw (米老鸭和唐老鼠), 信区: Programming

标 题: boost::iterator_adaptor (I)

发信站: BBS 水木清华站 (Sat May 18 23:27:33 2002)

内容很多, 一部分一部分来. 先说其中的typelist实现的原理。

I) Type-list, 类型列表. 很tricky的方法, 第一次看见是在loki库里

面. 有时候我们确实需要一个类型的列表, 可以简单的遍历访问. 而一般的

容器是不能储存类型的. 怎么办? 看下面.

首先, 这里的类型列表是怎么建立起来的? 很简单

template <class A, class B>

struct cons_type {

typedef A first_type;

typedef B second_type;

};

这样的情况下, cons_type<int, double>::first_type就是int, 而

second_type就是double. 而奇妙的作用在于cons_type的嵌套使用,

cons_type<cons_type<int, double>, long>::first_type 是

cons_type<int, double>, 而first_type::first_type是int. 在这个

库中, 额外定义了一个end_of_list表示类表结束.明白了吗?明白了我

们就继续吧 ;)

然后介绍一个find_param模版, 可以从一个类型列表里面找出特定的类

型. 对于不支持偏特化的编译器, 方法如下:

template <class AssocList, class Key>

struct find_param {

typedef typename find_param_helper1<AssocList>::type select1;

typedef typename select1::template select<AssocList, Key>::type type;

};

其中

template <class AssocList> struct find_param_helper1

{ typedef find_param_continue type; };

template <> struct find_param_helper1<end_of_list>

{ typedef find_param_end type; };

struct find_param_continue {

template <class AssocList, class Key2> struct select {

typedef typename AssocList::first_type Head;

typedef typename Head::first_type Key1;

typedef typename Head::second_type Value;

typedef typename if_true<(is_same<Key1, Key2>::value)>::template

then<Value,

typename find_param<typename AssocList::second_type, Key2>::type

然后介绍一个find_param模版, 可以从一个类型列表里面找出特定的类

型. 对于不支持偏特化的编译器, 方法如下:

template <class AssocList, class Key>

struct find_param {

typedef typename find_param_helper1<AssocList>::type select1;

typedef typename select1::template select<AssocList, Key>::type type;

};

其中

template <class AssocList> struct find_param_helper1

{ typedef find_param_continue type; };

template <> struct find_param_helper1<end_of_list>

{ typedef find_param_end type; };

struct find_param_continue {

template <class AssocList, class Key2> struct select {

typedef typename AssocList::first_type Head;

typedef typename Head::first_type Key1;

typedef typename Head::second_type Value;

typedef typename if_true<(is_same<Key1, Key2>::value)>::template

then<Value,

typename find_param<typename AssocList::second_type, Key2>::type

>::type type;

};

};

struct find_param_end {

template <class AssocList, class Key>

struct select { typedef detail::default_argument type; };

};

从以上代码综合看来, 当Key1和Key2是同一类型的时候, 就是模版嵌套

结束的时候, 否则, 模版不停嵌套展开, 知道找到合适的Key2(is_same)或者遇到

end_of_list(特化的模板)为止. if_true的模版在detail/select_type.hpp中,

很明了.

花开两朵, 如果是支持片特化的编译器, 那就简单的多了.

template <class AssocList, class Key> struct find_param;

template <class Key>

struct find_param<end_of_list, Key> { typedef default_argument type; };

template <class Key, class Value, class Rest>

struct find_param<detail::cons_type< detail::cons_type<Key, Value>, Rest>, Key> {

struct find_param<end_of_list, Key> { typedef default_argument type; };

template <class Key, class Value, class Rest>

struct find_param<detail::cons_type< detail::cons_type<Key, Value>, Rest>, Key> {

typedef Value type;

}; //偏特化, 表示Key和Key相同的情况

template <class Key1, class Value, class Rest, class Key2>

struct find_param<detail::cons_type< detail::cons_type<Key1, Value>, Rest>, Key2> {

typedef typename find_param<Rest, Key2>::type type;

}; //否则, 模版嵌套展开.

TypeList是现在也算是一种常见技巧了, 还是那本Modern C++ Design中提出来的,

建议有兴趣的去cuj上找来看更详细的说明, 主要是建立typelist的方法. ;)

--

ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz

※ 来源:·BBS 水木清华站 bbs.edu.cn·[FROM: 166.111.172.6]

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有