c – 使用相同的fstream读取和写入同一个文件

c – 使用相同的fstream读取和写入同一个文件,第1张

概述我有一个文件已经包含一些数据(比如说,8 kB).我想从文件的开头读取一些东西,然后覆盖从我完成阅读的地方开始的数据.所以我尝试使用以下代码: std::fstream stream("filename", std::ios::in | std::ios::out | std::ios::binary);char byte;stream.read(&byte, 1);// stream. 我有一个文件已经包含一些数据(比如说,8 kB).我想从文件的开头读取一些东西,然后覆盖从我完成阅读的地方开始的数据.所以我尝试使用以下代码:
std::fstream stream("filename",std::ios::in | std::ios::out | std::ios::binary);char byte;stream.read(&byte,1);// stream.seekp(1);int bytesCount = 4096;auto bytesvec = std::vector<char>(bytesCount,'c');char* bytes = bytesvec.data();std::cout << stream.bad() << std::endl;stream.write(bytes,bytesCount);std::cout << stream.bad() << std::endl;

如果我执行这个代码,那么第一个bad()返回false,但是第二个返回true,实际上没有写入.

如果我将bytesCount减小到小于4096的值(大概是一些内部缓冲区的大小),那么第二个bad()返回false,但仍然没有写入.

如果我取消注释seekp()行,写入开始工作:bad()返回false,并且字节实际上被写入.

为什么在这里需要seekp()为什么没有它呢? seekp()是正确的方法吗?

我在windows 7上使用Visual Studio 2012.

解决方法 你正在对阅读的混合造成限制
在MS的fstream的更新模式下打开文件的写 *** 作
库继承自其C< stdio.h>实现.

C标准(我引用C99,但在这一点上与C89没有区别)
在7.19.5.3/6状态:

When a file is opened with update mode (‘+’ as the second or third character in the
above List of mode argument values),both input and output may be performed on the
associated stream. However,output shall not be directly followed by input without an
intervening call to the fflush function or to a file positioning function (fseek,
fsetpos,or rewind),and input shall not be directly followed by output without an
intervening call to a file positioning function
,unless the input operation encounters end-
of-file.

(我的重点).

所以你的stream.seekp(1)解决方案,下载到C fseek是正确的.

GNU C库没有此标准限制,因此您发布的代码有效
如同GCC建成的那样.

MS< fstream>图书馆符合C标准的继承
这个限制. fstreams使用basic_filebuf< charT,traits>实现.在(C11)标准的这个模板的第27.9.1.1/2段中,它简单地说:

The restrictions on reading and writing a sequence controlled by an object of class basic_filebuf are the same as for reading and writing with the Standard C library files.

总结

以上是内存溢出为你收集整理的c – 使用相同的fstream读取和写入同一个文件全部内容,希望文章能够帮你解决c – 使用相同的fstream读取和写入同一个文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1256493.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存