1

这是在不使用折叠的情况下评估参数包的唯一方法(因为它需要使用运算符)?

#include <iostream>

template<int ...Is, typename Function>
void eval(Function&& f)
{
    // (f(Is)...);
    auto op = [&f](int i){f(i); return 0;};
    auto doNothing = [](auto...){};
    doNothing(op(Is)...);
}

int main()
{
    eval<0,1,2>([](int x){std::cout << x << "\n";});
}

本质上我想做(f(Is)...),但由于某种原因,这在 C++ 中是不允许的。有没有比使用上面介绍的解决方法更优雅的方法来实现?

4

1 回答 1

7

有一个更简单的解决方案:

#include <iostream>

template<int ...Is, typename Function>
void eval(Function&& f)
{
    (f(Is),...);
}

int main()
{
    eval<0,1,2>([](int x){std::cout << x << "\n";});
}
于 2019-10-20T18:09:35.977 回答