如何初始化二维数组?
我一直收到错误 - 没有为引用成员Matrices :: array提供初始化。
Matrices::Matrices()
{
int row = 0;
int col = 0;
double** array = new double*[0];
for (int i = 0; i < row; ++i)
array[i] = new double[0];
for (int i = 0; i < row; i++)
for (int j = 0; j < col; j++)
array[i][j] = 0;
}
我不知道我尝试过很多方式:
double** array = new double*[0];
array[0] = new double[0];
array[0][0] = 0;