我收到以下错误:
“运行时检查失败 #2 - 变量‘mat’周围的堆栈已损坏”在控制台中给出结果后。
但是,我观察到,CreateMatrix 函数会引发访问冲突.. 对于更大的矩阵维度。例如,适用于 5x7,但不适用于 50 x 70。如何?
程序只是创建矩阵(初始化)和设置+打印矩阵元素。
此外,问题的警告是我被要求不要在 main() 中使用“Matrix* mat..”之类的东西。否则,解决方案是直截了当的。
我希望,你明白我的问题。
更详细的代码:
struct Matrix
{
int width;
int height;
int* data;
};
typedef struct Matrix Matrix;
int main()
{
Matrix mat, *matP;
//1. Things that Works...
matP = CreateMatrix(&mat,700,500);
SetValue(matP,500,600,-295);
int val=GetValue(matP,500,600);
printf("%d\n",val);
//2. Things that does NOT work... !!!
CreateMatrix(&mat,700,500); // this is C-style "Call-By-Reference" CreateMatrix2()
SetValue(&mat,500,600,-295); // ERROR in this function, while setting matrix element
val=GetValue(&mat,500,600);
printf("%d\n",val);
}
void SetValue(Matrix* mat,int row,int col,int value)
{
*(mat[(mat->width*(row-1)) + (col-1)].data) = value;// <------ ERROR here
// Unhandled exception at... Access violation writing location 0x000001f4
}
Matrix * CreateMatrix(Matrix *mat,int width,int height)
{
// mat = (Matrix*)malloc(width*height*(sizeof(Matrix))); // As told by Salgar
mat->height = height;
mat->width = width;
for(int i=0; i < height; i++ )
{
for(int j=0; j < width; j++ )
{
mat[width*i + j].width = width;
mat[width*i + j].height = height;
mat[width*i + j].data = (int*)malloc(sizeof(int));
}
}
}