gpt4 book ai didi

c++ - 如何从元组中获取第 N 种类型?

转载 作者:IT老高 更新时间:2023-10-28 22:18:30 25 4
gpt4 key购买 nike

我想制作一个模板,我可以在其中输入一个索引,它会给我那个索引的类型。我知道我可以用 decltype(std::get<N>(tup)) 做到这一点但我想自己实现这个。比如我想做这个,

typename get<N, std::tuple<int, bool, std::string>>::type;

...它会给我位置 N - 1 的类型(因为从 0 开始索引的数组)。我怎样才能做到这一点?谢谢。

最佳答案

您可以使用类模板和部分特化来做您想做的事。 (请注意, std::tuple_element 与其他答案所说的几乎相同):

#include <tuple>
#include <type_traits>

template <int N, typename... Ts>
struct get;

template <int N, typename T, typename... Ts>
struct get<N, std::tuple<T, Ts...>>
{
using type = typename get<N - 1, std::tuple<Ts...>>::type;
};

template <typename T, typename... Ts>
struct get<0, std::tuple<T, Ts...>>
{
using type = T;
};

int main()
{
using var = std::tuple<int, bool, std::string>;
using type = get<2, var>::type;

static_assert(std::is_same<type, std::string>::value, ""); // works
}

关于c++ - 如何从元组中获取第 N 种类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16928669/

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