c – 标准库容器的通用函数模板

c – 标准库容器的通用函数模板,第1张

概述我正在尝试编写一个简单的通用函数来迭代容器元素.每个元素都转换为std :: string(无论如何)并存储在另一个地方.基本版本是微不足道的: template<class Container>void ContainerWork(const Container& c){ for(const auto& elem : c) { /* convert to string 我正在尝试编写一个简单的通用函数来迭代容器元素.每个元素都转换为std :: string(无论如何)并存储在另一个地方.基本版本是微不足道的:
template<class Container>voID ContainerWork(const Container& c){    for(const auto& elem : c) {        /* convert to string and store*/    }}

然后有必要为值类型为std :: string的容器添加特化,并将代码转换为:

template<typename T,template<typename,typename> class Container,class Allocator>voID ContainerWork(Container<T,Allocator> c){    for(const T& elem : c) {        /* convert to string and store*/    }}template<template<typename,class Allocator>voID ContainerWork(Container<std::string,Allocator> c){    for(const std::string& elem : c) {        /* frame elem in quotes*/    }}

它工作得很好,但现在我只能使用有序的容器(矢量,列表等),但我也想使用set和unordered_set.任何想法如何没有“复制粘贴”实现4个容器的容器?我正在尝试使用decltype(Container):: value_type但没有运气.

我可能会使用大多数c 11功能(编译器 – VS2012或GCC 4.8.x)

解决方法 这就是为什么所有标准库的算法都适用于迭代器而不是容器.

您可以更改核心功能以处理迭代器而不是容器.这将需要部分特化,这对于函数模板是不存在的,因此我们将使用委托到类的技巧:

template <typename It>voID DoIteratorWork(It start,It end){  DoIteratorWork_Impl<It,typename std::iterator_traits<It>::value_type>::call(start,end);}template <typename It,typename ValueType>struct DoIteratorWork_Impl{  static voID call(It start,It end)  {    for (; start != end; ++start) {      // operate on *it    }  }};template <typename It>struct DoIteratorWork_Impl<It,std::string>{  static voID call(It start,It end)  {    for (; start != end; ++start) {      // operate on *it    }  }};

如果你真的想,你可以创建一个包装器:

template <class Container>voID DoContainerWork(const Container& c){  using std::begin; using std::end; // enable ADL of begin and end  return DoIteratorWork(begin(c),end(c));}
总结

以上是内存溢出为你收集整理的c – 标准库容器的通用函数模板全部内容,希望文章能够帮你解决c – 标准库容器的通用函数模板所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1237578.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存