假设:
typedef boost :: tuple< T1,T2,T3,...,Tn> Tuple_Tn
其中类型T1,... Tn都已定义,
给定类型T_another,我想定义一个新的元组类型:
typedef boost :: tuple< T1,T2,T3,...,Tn,T_another> Tuple_T_plus_1
但这是我的问题:在我想要定义它的地方我只能访问类型Tuple_Tn和T_another。
换句话说,是否可以用Tuple_Tn和T_another来定义Tuple_T_plus_1?
答案 0 :(得分:3)
我不确定Boost.Tuple中是否有这样的功能,或许Boost.Fusion更适合您的需要。
但是,如果您有一个支持C ++ 11可变参数模板的编译器,您可以切换到std::tuple
并编写一个小元函数来将类型附加到现有元组:
template <typename Container, typename T>
struct push_back;
template <template <typename...> class Container, typename T, typename... Args>
struct push_back<Container<Args...>, T>
{
typedef Container<Args..., T> type;
};
typedef std::tuple<int, double> myTuple;
typedef push_back<myTuple, bool>::type myOtherTuple;
myOtherTuple(1, 0.0, true);
boost::tuple
可以实现同样的目标,但写作会更加乏味。