gpt4 book ai didi

c++ - 如何将 vector (或类似 vector )传递到可变参数模板中

转载 作者:搜寻专家 更新时间:2023-10-31 00:53:21 46 4
gpt4 key购买 nike

假设我有以下代码:

template <typename... Args>
void DoSomething(const Args&... args)
{
for (const auto& arg : {args...})
{
// Does something
}
}

现在假设我从另一个函数调用它,并想传入一个 std::vector(或者以某种方式修改 vector ,使其可以与此一起使用)

void DoSomethingElse()
{
// This is how I'd use the function normally
DoSomething(50, 60, 25);

// But this is something I'd like to be able to do as well
std::vector<int> vec{50, 60, 25};
DoSomething(??); // <- Ideally I'd pass in "vec" somehow
}

有没有办法做到这一点?我也考虑过使用 std::initializer_list 而不是可变参数模板,但问题仍然是我无法传递现有数据。

谢谢。

最佳答案

这是一种使用 SFINAE 的方法。传递一个元素,它会被假定为在 ranged for-loop 中起作用。

如果您传递多个参数,它会构造一个 vector 并对其进行迭代。

#include <iostream>
#include <type_traits>
#include <vector>

template <typename... Args, typename std::enable_if<(sizeof...(Args) > 1), int>::type = 0>
void DoSomething(const Args&... args)
{
for (auto& a : {typename std::common_type<Args...>::type(args)...})
{
cout << a << endl;
}
}

template <typename Arg>
void DoSomething(Arg& arg)
{
for (auto a : arg)
{
std::cout << a << std::endl;
}
}

int main() {
DoSomething(10, 50, 74);

std::vector<int> foo = {12,15,19};
DoSomething(foo);
return 0;
}

关于c++ - 如何将 vector (或类似 vector )传递到可变参数模板中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49024737/

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