9

考虑可能的实现std::apply

namespace detail {
template <class F, class Tuple, std::size_t... I>
constexpr decltype(auto) apply_impl(F &&f, Tuple &&t, std::index_sequence<I...>) 
{
    return std::invoke(std::forward<F>(f), std::get<I>(std::forward<Tuple>(t))...);
}
}  // namespace detail

template <class F, class Tuple>
constexpr decltype(auto) apply(F &&f, Tuple &&t) 
{
    return detail::apply_impl(
        std::forward<F>(f), std::forward<Tuple>(t),
        std::make_index_sequence<std::tuple_size_v<std::decay_t<Tuple>>>{});
}

为什么在调用f带有参数元组的函数()传递(t)时,我们不需要在实现std::forward中对元组的每个元素std::get<I>(std::forward<Tuple>(t))...执行?

4

2 回答 2

7

您不需要std::forward每个元素,因为std::get元组的右值引用和左值引用已重载。

std::forward<Tuple>(t)会给你一个左值(Tuple &)或一个右值(Tuple &&),根据你得到的,std::get会给你一个T &(左值)或一个T &&(右值)。查看 的各种重载std::get


关于std::tuple和的一些细节std::get-

正如StoryTeller所提到的,元组的每个成员都是一个左值,无论它是从右值还是左值构造的,在这里都无关紧要:

double a{0.0};
auto t1 = std::make_tuple(int(), a);
auto t2 = std::make_tuple(int(), double());

问题是 - 元组是右值吗?如果是,你可以移动它的成员,如果不是,你必须做一个复制,但std::get已经通过返回具有相应类别的成员来处理这个问题。

decltype(auto) a1 = std::get<0>(t1);
decltype(auto) a2 = std::get<0>(std::move(t1));

static_assert(std::is_same<decltype(a1), int&>{}, "");
static_assert(std::is_same<decltype(a2), int&&>{}, "");

回到一个具体的例子std::forward

template <typename Tuple>
void f(Tuple &&tuple) { // tuple is a forwarding reference
    decltype(auto) a = std::get<0>(std::forward<Tuple>(tuple));
}

f(std::make_tuple(int())); // Call f<std::tuple<int>>(std::tuple<int>&&);
std::tuple<int> t1;
f(t1); // Call f<std::tuple<int>&>(std::tuple<int>&);

在第一次调用中f,类型aint&&因为tuple将被转发为a std::tuple<int>&&,而在第二种情况下,其类型将是int&因为tuple将被转发为a std::tuple<int>&

于 2016-12-21T10:40:57.397 回答
2

std::forward用于确保所有内容都以正确的值类别到达调用站点。

但是元组的每个成员都是一个左值,即使它是一个rvalue引用元组。

于 2016-12-21T10:37:26.160 回答