其他分享
首页 > 其他分享> > 使用fopen打开文件时,如果文件不存在,就不需要执行fclose,否则会产生段错误

使用fopen打开文件时,如果文件不存在,就不需要执行fclose,否则会产生段错误

作者:互联网

使用fopen打开文件时,如果文件不存在,就不需要执行fclose,否则会产生段错误,如下:

// test.cpp  
#include <stdio.h>

int main() {
    FILE *outfp_ = NULL;
    outfp_ = fopen("output.h264", "rb");
    if (outfp_ == NULL ){
      fclose(outfp_);
    }
}

由于output.h264文件不存在,那么上述代码就会产生段错误,执行过程如下:

g++ test.cpp 
./a.out 
Segmentation fault (core dumped)

标签:文件,NULL,fclose,outfp,test,fopen
来源: https://www.cnblogs.com/codingbigdog/p/16514423.html