在可变函数中转发特定范围的参数

时间:2018-09-07 06:55:59

标签: c++ variadic-templates variadic-functions variadic

可变参数函数中是否有方法 std :: forward 特定范围的参数?例如:

#include <iostream>

template<typename T>
    void test_simple(T v0,T v1)
{
    std::cout<<v0<<","<<v1<<std::endl;
}

template<typename... TARGS>
    void test_variadic(TARGS ...args)
{
    test_simple(std::forward<TARGS>(args)...); // Forward all arguments except for the first one?
}

int main(int argc,char *argv[])
{
    test_variadic(5.f,2.f,7.f);
    return EXIT_SUCCESS;
}

我希望 test_variadic 仅将最后两个参数转发给 test_simple ,以便输出为“ 2.0,7.0”。

1 个答案:

答案 0 :(得分:5)

使用其他模板参数:

template <typename T, typename... Ts>
void test_variadic(T&& arg, Ts&&... args) {
    test_simple(std::forward<Ts>(args)...);
}

那样,第一个参数不属于可变参数。