我将char ** input
从main()
传递到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
并期望该更改会反映在传递给函数的实际参数中。为此,您需要传递一个指向指针的变量,例如在这种情况下,您需要
int getInput(char *** input, const char * fileName) { //notice the extra *
并且需要像这样称呼它
char ** inp = NULL;
getInput(&inp, ..........);
然后,
getInput()
将能够在函数内的*input
中分配内存,该内存将反映到inp
中。否则,从
getInput()
返回后,实际参数仍将未初始化,并且进一步使用该参数(在您的情况下,在for
函数的processInExp()
循环中)将导致undefined behaviour。也就是说,还有两个重要的注意事项,
malloc()
中的C
和family的返回值。 while ( !feof (file) )
always wrong? 关于c - 使用malloc时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31470053/