首页 > TAG信息列表 > outfp

使用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.h26