作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个参数包 args...
任意类型的 vector ,对应的有一个索引 vector 说 v = {3,0,5...}
的大小和顺序与 args...
的成员数相同。我希望 get_tuple
在 v
给定的索引处返回 args...
元素的元组。
这是我目前所拥有的,但我一直在尝试迭代参数包的成员。
template<typename... Args>
auto get_tuple(const std::vector<size_t>& vector, const Args &... args) {
return std::make_tuple(args[v[0]]...);
}
例如:
std::vector<std::string> v1 = {"a", "b"};
std::vector<int> v2 = {1,2};
std::vector<size_t> v = {0,1};
auto result = get_tuple(v, v1, v2); // ("a",2) expected
最佳答案
在 C++17 中,您需要额外的间接级别来获取一组索引以获取这些索引处的一组元素:
template<typename... Args, std::size_t... Is>
auto get_tuple_impl(const std::vector<std::size_t>& indices,
std::index_sequence<Is...>,
const Args&... args) {
return std::make_tuple(args[indices[Is]]...);
}
template<typename... Args>
auto get_tuple(const std::vector<std::size_t>& indices, const Args&... args) {
return get_tuple_impl(indices, std::index_sequence_for<Args...>(), args...);
}
在 C++20 中,我们可以为您提供一个带有就地调用模板参数的 lambda 函数:
template<typename... Args>
auto get_tuple(const std::vector<std::size_t>& indices, const Args&... args) {
return [&]<std::size_t... Is>(std::index_sequence<Is...>) {
return std::make_tuple(args[indices[Is]]...);
}(std::index_sequence_for<Args...>());
}
您可能还想添加一个断言 assert(indices.size() == sizeof...(Args));
或使用 std::array<std::size_t, N>
改为输入。
关于c++ - 遍历参数包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71347375/
我是一名优秀的程序员,十分优秀!