所有。我已经尝试过并试图了解这一点,觉得我几乎就在那里,但我对我需要多少'*'感到困惑!我有一个函数,它将包含数据文件的目录字符串作为输入,一个int和指向两个未初始化的2D数组的指针。该函数读取数据文件,然后分配内存并相应地填充数组。
这段代码完全错了,我知道,但想法是:
void main()
{
double **Array1;
int **Array2;
int dimension1;
char DirWork[100], buff[100];
f_ReadData(DirWork, dimension1, &Array1, &Array2);
sprintf(buff,"%lf",Array1[0][0]); // Causes segmentation fault
printf(buff);
}
和
void f_ReadData(char *DirWork, int dimension1, double ***Array1ptr, int ***Array2ptr)
{
int ct, ct2;
double **Array1 = *Array1ptr;
int **Array2 = *Array2ptr;
char FullDirArray1[100], FullDirArray2[100];
FILE *d_Array1, *d_Array2;
sprintf(FullDirArray1,"%s%s,DirWork,"Array1.dat");
sprintf(FullDirArray2,"%s%s,DirWork,"Array2.dat");
d_Array1=fopen(FullDirArray1,"r");
d_Array2=fopen(FullDirArray2,"r");
fscanf(d_Array1,"%d", &dimension1);
Array1 = dmatrix(0,dimension1-1,0,3); // allocates memory to Array1 (dimension1 x 3) elements, using nrutil
Array2 = imatrix(0,dimension1-1,0,3); // allocates memory to Array2 (dimension1 x 3) elements, using nrutil
for(ct=0; ct<dimension1; ct++)
{
for(ct2=0; ct2<3; ct2++)
{
fscanf(d_Array1, "%lf", &Array1[ct][ct2];
fscanf(d_Array2, "%d", &Array2[ct][ct2];
}
}
fclose(d_Array1);
fclose(d_Array2);
}
我在这里错过了错误处理,但我确实有一些错误处理...不是它有帮助。当我尝试从main函数访问数组时,我遇到了分段错误。
如果有人可以提供帮助,我真的很感激......我看到了*明星!谢谢!
答案 0 :(得分:0)
然后星数是正确的。
您遇到了段错误,因为您没有将指针复制回您分配的缓冲区。您只初始化f_ReadData:Array1,但您需要将此值重新分配给* Array1ptr。