尝试打印指针值时出现异常

时间:2011-03-12 13:22:24

标签: c pointers matrix

抱歉我的英语不好。

我刚刚开始研究我的学校决赛项目,我的代码中遇到错误......

程序在C中,它使矩阵被触发(带有起始指针,行数和列数)。第一个函数应该创建一个矩阵,其中包含行数和列数的放大,并将所有值清零(稍后它将用于不同的perpece,但永远不会这样)。后来有一个函数可以打印矩阵。

当程序到达“printf”时,它会中断.. "Unhandled exception at 0x7789ea27 in image_pross.exe: 0xC0000374: A heap has been corrupted."

以下是代码:

#include <stdio.h>

#include <stdlib.h>

struct matrix

{
    int* ptr;

    int row;

    int column;

};

matrix ZFMatrix(matrix preMtx,int nColumn,int nRow);

void printMatrix (matrix mtx);


void main( int argc, char* argv[])
{
    int matrixAdd[3][3]={{1,1,1},{1,-8,1},{1,1,1}};

    matrix mtx;

    mtx.ptr=&matrixAdd[0][0];

    mtx.row=3;

    mtx.column=3;

        mtx= ZFMatrix(mtx,2,2);

    printMatrix(mtx);

}
matrix ZFMatrix(matrix preMtx,int nColumn,int nRow)

{
    matrix newMtx;


    newMtx.column=nColumn*2+preMtx.column;

    newMtx.row=nRow*2+preMtx.row;

    newMtx.ptr= (int*) malloc((newMtx.row)*(newMtx.column));

    int i,j,*tmp=newMtx.ptr;

    //zero out the matrix

    for (i=0; i<newMtx.column;i++)

    {

        for(j=0;j<newMtx.row;j++)

        {

            *newMtx.ptr=0;

            newMtx.ptr++;


        }

    }

    newMtx.ptr=tmp;

     return newMtx;

}

void printMatrix (matrix mtx)

{

    int i=0,j=0;

    for (;i<mtx.column;i++)


    {
        for(;j<mtx.row;j++)

        {


            printf("%d, ", *mtx.ptr);

            mtx.ptr++;
        }
        printf("\n");
    }
}

1 个答案:

答案 0 :(得分:4)

newMtx.ptr= (int*) malloc((newMtx.row)*(newMtx.column));

应该是:

newMtx.ptr= (int*) malloc((newMtx.row)*(newMtx.column) * sizeof(int));

当您需要整数

时,您正在分配newMtx.row * newMtx.column 字节

此外,当你有一个malloc()时,你应该有一个相应的free() - 或者你会泄漏内存。