5

我想创建在内部使用特定容器来确定不同类型的通用类模板。像这样的东西:

#include <vector>
#include <list>
template< typename F, template< class ... > class container_type = std::vector >
struct C
{
    C();
    template< typename U >
    C(container_type< U >);
    C(container_type< F >);
    C(container_type< int >);
    container_type< double > param;
};
C< unsigned, std::list > c;

最自然的方法是什么?比如说,您是否想以任何形式提及容器分配器的存在?

4

1 回答 1

5

像这样的东西?

template< typename F, template<class T, class = std::allocator<T> > class container_type = std::vector >
struct C
{
    C() {}
    template< typename U >
    C(container_type< U >) {}
    C(container_type< F >) {}
    C(container_type< int >) {}

    container_type< double > param;
};

C< unsigned, std::list > c;

编辑:

使用类似但更简单的方法,该方法std::queue由将在内部使用的容器类型参数化。希望这能证明这种方法是很自然的。上面的示例在 VC++10 中进行了测试,并展示了如何处理分配器。

于 2013-01-21T12:01:10.257 回答