你可以为你的类型添加一个分段构造函数吗?如果是这样,你可以创建一个可怕的宏来解包和委托一个元组:
#define CONSTRUCT_FROM_TUPLE(CLS) \
template <class... Ts> \
CLS(std::tuple<Ts...> const& tup) \
: CLS(tup, std::index_sequence_for<Ts...>{}) \
{ } \
\
template <class Tuple, size_t... Is> \
CLS(Tuple const& tup, std::index_sequence<Is...> ) \
: CLS(std::get<Is>(tup)...) \
{ }
只需将其添加到您的类型中:
struct A {
A(bool, int ) { }
A(const A& ) = delete;
CONSTRUCT_FROM_TUPLE(A)
};
struct B {
B(char, double ) { }
B(const B& ) = delete;
CONSTRUCT_FROM_TUPLE(B)
};
并传入元组:
std::tuple<A, B> tup(
std::forward_as_tuple(true, 42),
std::forward_as_tuple('x', 3.14));
Pre-C++11,我不知道这是可能的——你根本没有委托构造函数。您必须:
- 编写你自己
tuple
的类,在其构造函数中接受元组
- 将元组构造函数添加到你的类型,显式初始化与非元组版本相同的东西
- 具有可单参数构造的类型元组,例如
boost::tuple<boost::scoped_ptr<A>, boost::scoped_ptr<B>>(new A(...), new B(...))
(1) 工作量很大,(2) 代码重复和容易出错,(3) 现在不得不突然进行分配。