多维 std::intializer_list,其中维度数被指定为其类的模板参数

multidimensional std::intializer_list where the number of dimensions is specified as a template argument of its class

本文关键字:参数 intializer std list 多维      更新时间:2023-10-16

我有一个多维数组,目前不接受initializer_list初始化,但我想允许这样做。但是,似乎我无法根据模板参数为 std::initializer_list 指定任意数量的嵌套。

// e.g. 5D array:
array<int, 5> arr(10, 5, 20, 34, 10); // the integers are the lengths of each dimension.
// This is what I'm trying to achieve on top of the above:
// creates the array and initializes it
array<int, 5> arr{ {{{{0, 1}}}}, {{{{1, 1}}}} };
// class signature:
// template <template T, unsigned dimensions> array { ... }
// --> where T is the array element type

答案不一定非要用std::initializer_list

我认为这应该有效:

template<typename BASE, int N>
struct nested {
  typedef std::initializer_list<typename nested<BASE,N-1>::initializer_list> initializer_list;
};
template<typename BASE>
struct nested<BASE,0> {
  typedef BASE initializer_list;
};

template<typename BASE, int N>
struct multi {
  multi(typename nested<BASE,N>::initializer_list& init) {
  };
};

不幸的是,我的两个 gcc 版本都没有工作initializer_list支持,所以我无法正确测试它。