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