I have this piece of code in C++:
std::array<std::array<int, 2>, 4> elements = {{1,2},{1,2},{1,2},{1,2}};
and it says: error: excess elements in struct initializer
I don't know why that happens. If I write that it works:
std::array<std::array<int, 2>, 4> elements = {{1,2}};
std::array
is subtle in aggregate initialization; it expects on more braces for the subobject (underlying array).You got the error for the initializer
{{1,2},{1,2},{1,2},{1,2}}
because there're 4{1,2}
s to initialize the subobject (underlying array) butstd::array
has only one, i.e. excess elements.