gpt4 book ai didi

c++ - 同时读/写

转载 作者:行者123 更新时间:2023-11-30 02:11:18 24 4
gpt4 key购买 nike

我正在做的是在 main 开始时使用 fstream 打开我的文件,并在结束时关闭它。在这两者之间,我正在写“Hello World”,然后阅读我写的内容,但结果总是奇怪的字符,而不是“Hello World”。我确实对 char 进行了转换,但这没有帮助。我有什么办法可以做到这一点吗?

最佳答案

你需要插入一个fseek当您从阅读切换到写作时调用,反之亦然。 (当然,你还需要 fopen"r+" 之类的,这样读和写都是允许的,但我想你已经意识到这一点——寻求为了在阅读和写作之间切换是一个鲜为人知的事实)。

作为this page把它,

For the modes where both read and writing (or appending) are allowed (those which include a "+" sign), the stream should be flushed (fflush) or repositioned (fseek, fsetpos, rewind) between either a reading operation followed by a writing operation or a writing operation followed by a reading operation.

关于c++ - 同时读/写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3697792/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com