0
4

1 回答 1

6

很多时候,问题在于编译器版本。以下代码适用于 GCC 4.7.1:

#include <array>

struct X{
  std::array<int, 2> a;
  X() : a{{1,2}} {}
};

int main(){
  X x;
}

活生生的例子。

于 2012-09-06T21:09:48.627 回答