C ++模板类构造函数

时间:2014-07-09 10:42:19

标签: c++ templates constructor

我有一个班级:

template<typename T, typename S>
class filterable_data
{
    /* ... */
};

我创建了这两个实例:

filterable_data<int, char> a;
filterable_data<int, bool> b = a;

我的问题是,如何正确编写该构造​​函数?

1 个答案:

答案 0 :(得分:3)

也将它作为模板:

template<typename T2, typename S2>
filterable_data(const filterable_data<T2, S2>& other);