今天在写程序的时候遇到了新建动态二维数组的问题,经过查阅已经解决,在这里记录一下相关的程序
[cpp] view plain copy
//设想要建立一个rows行,cols列的矩阵
//使用new进行新建
int rows, cols;
int *array = new int[rows];
for (int i = 0; i < rows; i++)
{
array[i] = new int[cols];
}
今天在写程序的时候遇到了新建动态二维数组的问题,经过查阅已经解决,在这里记录一下相关的程序
[cpp] view plain copy
//设想要建立一个rows行,cols列的矩阵
//使用new进行新建
int rows, cols;
int *array = new int[rows];
for (int i = 0; i < rows; i++)
{
array[i] = new int[cols];
}