在C++中,要声明一个2D的std::array,你可以使用嵌套的std::array来表示行和列。下面是一个示例代码:
#include <array>
int main() {
const int rows = 3;
const int cols = 4;
std::array<std::array<int, cols>, rows> myArray;
// 对数组进行初始化
for (int i = 0; i < rows; ++i) {
for (int j = 0; j < cols; ++j) {
myArray[i][j] = i * cols + j;
}
}
// 访问数组元素
for (int i = 0; i < rows; ++i) {
for (int j = 0; j < cols; ++j) {
std::cout << myArray[i][j] << " ";
}
std::cout << std::endl;
}
return 0;
}
在上面的代码中,我们声明了一个名为myArray的2D std::array,它有3行和4列。我们使用嵌套的std::array<int, cols>来表示每一行。然后,我们可以使用双重循环对数组进行初始化和访问。
这种方式声明的2D std::array可以方便地进行访问和操作。你可以根据需要修改行数和列数,并使用相应的索引访问特定的元素。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云