我不断收到错误检测到堆损坏。我已经阅读了这里的几个问题,但我无法完全找出我的代码中导致这种情况的原因。我正在尝试创建一个二维数组,该数组将保存从文本文件中读取的矩阵。
// Create a 2d matrix to hold the matrix (i = rows, j = columns)
matrix = new int*[cols];
for(int i = 0; i <= cols; i++) {
matrix[i] = new int[rows];
}
// Populate the matrix from the text file
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
inputFile >> matrix[i][j];
}
}
我的析构函数是:
for(int i = 0; i <= cols; i++) {
delete[] matrix[i];
}
delete[] matrix;
我试过调试,但在这种情况下确实有很大帮助。有什么建议么?