c – 为什么ofstream需要刷新?

前端之家收集整理的这篇文章主要介绍了c – 为什么ofstream需要刷新?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我运行以下代码,则根本不会创建任何文件
std::ofstream outputFile(strOutputLocation.c_str(),std::ios::binary);
outputFile.write((const char*)lpResLock,dwSizeRes);
outputFile.close();

但是,如果我在关闭之前添加flush(),它可以工作:

std::ofstream outputFile(strOutputLocation.c_str(),dwSizeRes);
outputFile.flush();
outputFile.close();

标准库是否真的需要这个,或者它是Visual C CRT中的错误

解决方法

这是一个错误.阅读§27.8.1.10/ 4,删节:

void close();
Effects: Calls rdbuf()->close()

rdbuf() – > close()有什么作用?根据§27.8.1.3/ 6,删节,强调我的:

basic_filebuf<charT,traits>* close();
If is_open() == false,returns a null pointer. If a put area exists,calls overflow(EOF) to flush characters.

也就是说,它假设要冲洗. (实际上,对flush()的调用最终会做同样的事情.)

注意,不需要调用close()本身,因为basic_ofstream的析构函数调用close().

原文链接:https://www.f2er.com/c/110414.html

猜你在找的C&C++相关文章