2

我遇到了一个奇怪的行为,fwrite()在我关闭流后成功,fclose()但文件没有因为fflush()失败而被覆盖。

我的代码是:

int main(int argc, char* argv[])
{
   FILE* file = fopen("file.txt", "w");
   if(!file) perror("Cannot open the file.\n");

    char text[] = "1234567";

    fclose(file);

    int count_of_written_objects = fwrite(text, sizeof(text),1, file);
    printf("Count of written objects into the file: %d \n", count_of_written_objects);

    if(count_of_written_objects != 1) perror("Not expected count of objects was written.\n");

    int success = fflush(file);
    printf("Variable success: %d \n", success);                                                                                                                
    if(success == EOF) perror("Flush did not succeed. \n");

    return 0;
}

它提供以下输出:

Count of written objects into the file: 1 
Variable success: -1 
Flush did not succeed. 
: Bad file descriptor

fwrite()关闭流时如何成功?可以fwrite()在关闭的流上写吗?你能给我解释一下吗?

4

1 回答 1

6

在文件关闭后尝试对文件执行任何操作,您正在处理未定义的行为。

库实现者假定调用者有责任按特定顺序发出调用,因此库可能会或可能不会尝试验证不正确的情况。对这种情况的验证主要是为了性能和减少代码大小而被忽略的。

如果您尝试写入之前已被free“d”过的内存位置,也会发生同样的事情。即使看起来一切正常,但您正在调用未定义的行为。

从技术上讲,在特定情况下,写入不可能成功,因为库函数fclose很可能会close在底层描述符上调用系统调用,并且对该描述符的任何后续write系统调用(最终由 调用fwrite)都应该失败因为它会被内核拒绝。

于 2014-05-30T12:05:46.020 回答