我想通过引用传递流,这是一个指针。所以我将它作为指针传递给指针。有人可以验证我的代码吗?
int main(int argc, char** argv)
{
FILE *stream;
printf("LINES: %d\n",scan(stream));
}
int scan(FILE *(*stream))
{
stream = fopen("names.txt", "r");
int ch = 0, lines=0;
while (!feof(*stream))
{
ch = fgetc(*stream);
if (ch == '\n')
{
lines++;
}
}
fclose(*stream);
return lines;
}
未收到任何输出。
答案 0 :(得分:2)
使用
int scan(FILE **stream) //no need for brackets
{
*stream = fopen("names.txt", "r"); //* is for dereferencing
if(*stream==NULL) // Checking the return value of fopen
{
printf("An error occured when opening 'names.txt'");
return -1;
}
int ch = 0, lines=0;
while ((ch = fgetc(*stream))!=EOF) //while(!feof) is wrong
{
if (ch == '\n')
{
lines++;
}
}
fclose(*stream); // Close the FILE stream after use
return lines;
}
int main(void)
{
FILE *stream;
printf("LINES: %d\n",scan(&stream)); //Pass address of `stream`. The address is of type `FILE**`
}
答案 1 :(得分:2)
您的代码存在设计问题。你究竟想要实现什么目标?
如果您只想计算行数,请为您的函数设置FILE *
本地:
int count_lines(const char *filename)
{
FILE *stream = fopen(filename, "r");
int lines = 0;
while (1) {
int c = fgetc(stream);
if (c == EOF) break;
if (c == '\n') lines++;
}
fclose(stream);
return lines;
}
如果要对已使用fopen
打开的文件执行常规文件操作(读取,写入,搜索,回放等),只需将句柄作为FILE *
传递:< / p>
int fget_non_space(FILE *stream)
{
int c;
do {
c = fgetc(stream);
} while (isspace(c));
return c;
}
在这种情况下,fopen
和fclose
都在此函数之外调用。 (您不应该在程序中调用fclose
,即使操作系统确保在退出后自动关闭文件,也应该这样。{/ p>
将指针传递给文件句柄FILE **
只有在想要在函数中更改该文件句柄本身时才有意义,例如通过调用fopen
:
int fopen_to_read(FILE **FILE pstream, const char *fn)
{
*pstream = fopen(fn, "r");
return (*pstream != NULL) ? 0 : -1;
}
即使这样,最好还是像fopen
一样返回文件句柄。
您的示例代码会在main
中显示打开的文件句柄,但您不能对其执行任何操作,您甚至无法关闭它。那是你要的吗?我对此表示怀疑。
答案 2 :(得分:1)
替换
stream = fopen("names.txt", "r");
与
*stream = fopen("names.txt", "r");
另外
printf("LINES: %d\n",scan(stream));
与
printf("LINES: %d\n",scan(&stream));