gpt4 book ai didi

c - 使用 malloc 时出错

转载 作者:太空宇宙 更新时间:2023-11-04 04:26:10 26 4
gpt4 key购买 nike

我将 char ** inputmain() 传递到 processInExp() 函数,然后我再次从 processInExp 传递() 函数到 getInput() 函数以在读取文件时动态分配它。

内部 getInput() 函数 input 在检查时已正确分配内存,但在 in processInExp() 中使用它时遇到获取运行时错误。可能是什么问题?

下面是我的代码:

int getInput(char ** input, const char * fileName)
{
int numInput = 0;
int i, j;
char c;
char tempInput[100];
FILE * pFile;
if((pFile = fopen(fileName, "r")) == NULL)
{
printf("Cannot read file %s\n", fileName);
system("PAUSE");
exit(1);
}
while(!feof(pFile))
{
c = fgetc(pFile);
if(c == '\n') ++numInput;

}
/* printf("%d\n", numInput); */
input = (char**)malloc(numInput * sizeof(char*)); /* #2 MALLOC input */
rewind(pFile);
for(i = 0; !feof(pFile); ++i)
{
fscanf(pFile, "%[^\n]%*c", tempInput);
/* printf("%s\n", tempInput); */
input[i] = (char*)malloc((strlen(tempInput) + 1) * sizeof(char)); /* #3 MALLOC input[] */
strcpy(input[i], tempInput);
/* printf("%s\n", input[i]); */ /* #4 PRINT OUT PERFECTLY */
memset(tempInput, 0, sizeof(tempInput));
}
fclose(pFile);
return numInput;
}
void processInExp(char ** input, char ** output, const char * fileName)
{
int numFormula;
int i;

numFormula = getInput(input, fileName); /* #1 PASSING input */
/* printf("%s\n", input[0]); */ /* #5 RUNTIME ERROR */
output = (char**)malloc(numFormula * sizeof(char*));
system("PAUSE");

for(i = 0; i < numFormula; ++i)
{
convertIntoPost(input[i], output[i]);
printf("%d. %s -> %s", (i + 1), input[i], output[i]);
}

}

最佳答案

C 使用按值传递函数参数传递。因此,从函数 getInput() 内部,您无法更改变量 input 并期望该更改反射(reflect)在传递给函数的实际参数中。为此,您需要传递一个指向变量的指针,就像在这种情况下,您需要这样做

   int getInput(char *** input, const char * fileName) { //notice the extra *

并且需要像这样调用它

   char ** inp = NULL;
getInput(&inp, ..........);

然后,getInput() 将能够在函数内部为 *input 分配内存,这将反射(reflect)到 inp 中。

否则,从 getInput() 返回后,实际参数仍将未初始化并进一步使用(在您的情况下,在 for 循环中>processInExp() 函数)将导致 undefined behaviour .

也就是说,还有两件事需要注意,

  1. see why not to cast malloc()C 中的族的返回值。
  2. 查看Why is while ( !feof (file) ) always wrong?

关于c - 使用 malloc 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41148841/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com