程序在编译后卡住,当试图 acsses 私有多维数组时

Program stuck after compilation when trying to acsses private multy-dimensional array

本文关键字:acsses 数组 编译 程序      更新时间:2023-10-16

代码编译后,当程序试图访问私有数组时,它被卡住了。 我构建了一个构造函数,在这个函数中我可以打印数组,但之后如果 IM 尝试从另一个函数访问数组,它不起作用。

在此代码中,它在 mat(1,2( 上工作时卡住了 - 试图返回 arr[1][2]:

我试图以不同的方式分配数组,使 [] 运算符,但似乎没有任何效果。

主文件 :

    #include "matrix.h"
    #include <iostream>
    int main() {
        Matrix<4, 4> mat;
            mat(1,2);
        std::cout << mat << std::endl;
    return 0;
    }

.h 文件 :

    #ifndef matrix_h
    #define matrix_h
    #include <iostream>
    template <int row, int col ,typename T=int>
    class Matrix {
    public:
Matrix(int v = 0) { // constructor with deafault value of '0'
    int **arr = new int*[row]; //initializing place for rows
    for (int j = 0;j < row;j++) {
        arr[j] = new int[col];
    }
    for (int i = 0;i < row;i++) 
        for (int j = 0;j < col;j++) 
            arr[i][j] = v;
}
T& operator () (int r, int c) const { 
    return arr[r][c];
}
friend std::ostream& operator<<(std::ostream& out,const Matrix <row,col,T> mat) { 
    for (int i = 0;i < row;i++) {
        for (int j = 0;j < col;j++) {
            out << mat(i,j) << " ";
        }
        out << std::endl;
    }
    return out;
}
    private:
        T** arr;
    };
    #endif //matrix_h

你的问题是你在构造函数中重新声明成员变量"arr",这导致了段错误。