指向类中多维数组的指针

pointers to multidimensional arrays in class

本文关键字:数组 指针      更新时间:2023-10-16

我试图编写一个程序,但在运行时出现分段错误(核心转储(。当我放置一个像 array_2d[10][1] 这样的定义数组时,问题解决了,但我需要为我的项目进行内存分配。这是我代码的简单版本:

#include <iostream>
#include <cmath>
#include <fstream>
#include <cstdlib>
#include <string>
using namespace std;
class Exam
{
    private:
        double** array_2d;
        unsigned int num;
        unsigned int num1;
    public:
        Exam();
        void memoryallocation();
        void show();
};
Exam::Exam()
{
    num=10;
    num1=1;
}
void Exam::memoryallocation ()
{
    double** array_2d = new double*[num];
    for (unsigned int i = 0; i < num ;i++) 
    {
        array_2d[i] = new double[num1];
    }
}
void Exam::show ()
{
    ifstream file;
    file.open("fish.txt");
    for (unsigned int i = 0; i < num; i++) 
    {
        for (unsigned int j = 0; j < num1; j++) 
        {
            file >> array_2d[i][j];
            cout<<array_2d[i][j]<<" ";
        }
        cout<<endl;
    }
    file.close();
}
int main()
{
    Exam E;
    E.memoryallocation();
    E.show();
    return 0;
}

在函数 Exam::memoryallocation () 中,您再次声明array_2d。

void Exam::memoryallocation ()
{
    array_2d = new double*[num]; //remove the redeclaration of array_2d
    for (unsigned int i = 0; i < num ;i++) 
    {
        array_2d[i] = new double[num1];
    }
}