gpt4 book ai didi

c++ - 如何获得 n 嵌套 vector 的最内层类型?

转载 作者:行者123 更新时间:2023-11-30 01:13:53 25 4
gpt4 key购买 nike

我需要获取 n 嵌套 vector 的内部类型。例如:

type a;                          //base_type of a = type
std::vector<type> b; //base_type of b = type
std::vector<std::vector<type>> c;//base_type of c = type

等等。我尝试使用包装器,但这会导致编译器错误。

template<typename T1>
struct base_type : T1::value_type { };

template<typename T1>
struct base_type<std::vector<T1>> {
using type = typename base_type<T1>::value_type;
};

最佳答案

你的两种情况都是错误的。

您的基本情况应该是非 vector 情况。对于非 vector ,没有::value_type。你只需要类型:

template <typename T>
struct base_type {
using type = T;
};

对于您的递归情况,base_type 的“结果”类型被命名为type。不是 value_type,所以我们必须在这里使用它:

template<typename T>
struct base_type<std::vector<T>> {
using type = typename base_type<T>::type;
};

我们可以简化为:

template<typename T>
struct base_type<std::vector<T>>
: base_type<T>
{ };

关于c++ - 如何获得 n 嵌套 vector 的最内层类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30960715/

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