如何实现可选模板参数?
我想要一个 class MyStruct<T1,T2,T3>
,它只允许使用第一个或前两个参数。现在,处理的函数也MyStruct<T1,T2,T3>
应该以某种方式正确处理未使用的模板参数。
例子:
#include <iostream>
template<class T1, class T2, class T3>
struct MyStruct {
T1 t1; T2 t2; T3 t3;
MyStruct() {}
MyStruct(T1 const& t1_, T2 const& t2_, T3 const& t3_)
: t1(t1_), t2(t2_), t3(t3_) {}
};
template<class T1, class T2, class T3>
MyStruct<T1, T2, T3> myplus(MyStruct<T1, T2, T3> const& x,
MyStruct<T1, T2, T3> const& y) {
return MyStruct<T1, T2, T3>(x.t1 + y.t1, x.t2 + y.t2, x.t3 + y.t3);
}
int main() {
typedef MyStruct<int, double, std::string> Struct;
Struct x(2, 5.6, "bar");
Struct y(6, 4.1, "foo");
Struct result = myplus(x, y);
// (8, 9.7, "barfoo")
std::cout << result.t1 << "," << result.t2 << "," << result.t3;
}
现在我想更改代码以使上述main()
功能仍然有效,但以下功能也可以:
typedef MyStruct<std::string, int> Struct;
// result: ("barfoo", 5)
Struct result = myplus(Struct("bar", 2), Struct("foo", 3));
或这个:
typedef MyStruct<int> Struct;
// result: (5)
Struct result = myplus(Struct(2), Struct(3));
我认为boost::tuple
使用了类似的技巧,您可以在其中使用boost::tuple<A>
, boost::tuple<A,B>
, boost::tuple<A,B,C>
,但我不确定他们是如何做到的。