3

我有一个当前不接受 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

4

1 回答 1

0

我认为这应该有效:

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 支持,所以我无法正确测试它。

于 2013-01-14T01:22:13.480 回答