码迷,mamicode.com
首页 > 编程语言 > 详细

C++11的模板新特性-变长参数的模板

时间:2014-11-07 16:19:14      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   使用   sp   on   amp   ef   size   

这个特性很赞,直接给例子吧,假如我要设计一个类,CachedFetcher内部可能使用std::map也可能使用std::unordered_map,也可能是其它的map,怎么设计呢?没有C++11变长模板之前这很费劲。。 因为map的模板参数可不是只有key,value两个啊,还有一些有默认参数的template参数。。。

? ?

template<typename _Key, typename _Value,

template<class _Kty, class _Ty, typename...> class _Map = std::unordered_map>

class CachedFetcher

{

public:

typedef _Key Key;

typedef _Value Value;

typedef _Map<Key, Value> Map;

typedef typename Map::iterator iterator;

typedef typename Map::const_iterator const_iterator;

? ?

private:

Map _map;

};

? ?

? ?

? ?

另外一个比较好的特性

template<typename _Key, typename _Value,

template<class _Kty, class _Ty, typename...> class _Map = std::map>

class LruMap

{

};

template <typename Key, typename Value, typename...>

using LruHashMap = LruMap<Key, Value, std::unordered_map>;

? ?

? ?

最后非模板的一个有用特性,复用基类的构造函数

? ?

class FeatureVector : public Vector

{

public:

~FeatureVector() = default;

FeatureVector(FeatureVector&&) = default;

FeatureVector& operator = (FeatureVector&&) = default;

FeatureVector(const FeatureVector&) = default;

FeatureVector& operator = (const FeatureVector&) = default;

? ?

#ifndef GCCXML

using Vector::Vector;

#endif

}

? ?

C++11的模板新特性-变长参数的模板

标签:style   color   ar   使用   sp   on   amp   ef   size   

原文地址:http://www.cnblogs.com/rocketfan/p/4081296.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!