gpt4 book ai didi

c++ - 为什么左折叠表达式不反转右折叠表达式的输出?

转载 作者:可可西里 更新时间:2023-11-01 16:04:43 24 4
gpt4 key购买 nike

我正在看 C++17 fold expressions我想知道为什么下面的程序会输出

4 5 6 
4 5 6

对于两个 for_each 调用

template<typename F, typename... T>
void for_each1(F fun, T&&... args)
{
(fun (std::forward<T>(args)), ...);
}

template<typename F, typename... T>
void for_each2(F fun, T&&... args)
{
(..., fun (std::forward<T>(args)));
}

int main()
{
for_each1([](auto i) { std::cout << i << std::endl; }, 4, 5, 6);
std::cout << "-" << std::endl;
for_each2([](auto i) { std::cout << i << std::endl; }, 4, 5, 6);
}

Live Example

我以为第二个折叠表达式是为了倒序输出数字

6 5 4

为什么结果一样?

最佳答案

根据§ 14.5.3/9

The instantiation of a fold-expression produces:

(9.1) — ((E1 op E2) op · · · ) op EN for a unary left fold,

(9.2) — E1 op (· · · op (EN-1 op EN )) for a unary right fold,

(9.3) — (((E op E1) op E2) op · · · ) op EN for a binary left fold, and

(9.4) — E1 op (· · · op (EN-1 op (EN op E))) for a binary right fold

In each case, op is the fold-operator, N is the number of elements in the pack expansion parameters, and each Ei is generated by instantiating the pattern and replacing each pack expansion parameter with its ith element.

在上面的代码中,它们都是一元折叠表达式,它们的扩展是

template<typename F, typename... T>
void for_each1(F fun, T&&... args) {

// Unary right fold (fun(args_0) , (fun(args_1) , (fun(args_2) , ...)))
(fun (std::forward<T>(args)), ...);
}

template<typename F, typename... T>
void for_each2(F fun, T&&... args) {

// Unary left fold ((fun(args_0) , fun(args_1)) , fun(args_2)) , ...
(..., fun (std::forward<T>(args)));
}

因此表达式具有与 comma operator 定义的相同的求值顺序因此输出是相同的。

致谢:感谢我的 friend Marco谁首先提出了最初的问题,让我有机会解决这个可能具有误导性的问题。

关于c++ - 为什么左折叠表达式不反转右折叠表达式的输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30819547/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com