我有以下数组:
int const A[4] = { 0, 1, 2, 3 };
我想初始化一个重复的数组,如下所示:
int a[4] = A;
如果我在cygwin上运行g ++ 4.8.2,如下所示:
g++ --std=c++11 myfile.cpp
我收到以下错误:
myfile.cpp:16:16: error: array must be initialized with a brace-enclosed initializer
int a[4] = A;
^
然而,显然" int a[4] = { A };
"也没有去工作。有没有办法使用简单的赋值语句从a
初始化我的数组A
,而无需诉诸:
int a[4] = { A[0], A[1], A[2], A[3] };
答案 0 :(得分:7)
std::copy(A, A+4, a)
或者,通过使用std :: array具有您想要的简单复制方法:
std::array<int, 4>A = {0, 1, 2, 3}
std::array<int, 4>a = A;
答案 1 :(得分:6)
使用标准类std::array
。
#include <array>
//...
const std::array<int, 4> A = { 0, 1, 2, 3 };
std::array<int, 4 > a = A;