std数组 - 初始化程序太多了

时间:2015-12-02 14:47:41

标签: c++

我不明白为什么它会说"太多的初始化者"这里

#include <iostream>
#include <array>

typedef std::array<std::array<double, 3>, 3> matrix;

int main()
{
  matrix mat = {
      { 1.0, 0.0, 472.3672 },
      { 1.0, 0.0, 472.3672 },
      { 1.0, 0.0, 472.3672 }
    };
}

我哪里出错了?

0 个答案:

没有答案