dajunx 发表于 2018-12-7 22:47:44

c++ 中最简单的文件读写

如下是简单的文件读写
#include <fstream>
#include <iostream>
#include <string>

void write() {
std::fstream file("file.txt",
                  std::fstream::in | std::fstream::out | std::fstream::app);
file << "aaalin";
file.close();
}

void read() {
std::string str;
std::fstream file("file.txt", std::fstream::in);
file >> str;
std::cout << str;
file.close();
}

int main() {
write();// 向file.txt文件写入内容
read();// 读取file.txt文件内容
return 0;
}

昆仔 发表于 2018-12-15 10:24:07

挺好挺好,写得不错

网络狼民 发表于 2019-1-21 12:03:50

会不会每次都覆盖原来的内容

cmm 发表于 2019-3-13 11:31:32

file.close();
这个是冗余代码,可以直接删除。

xiaoqi8245 发表于 2019-3-20 09:42:55

帮你顶上去,哈哈,不错不错

tiger2003 发表于 2019-6-9 12:07:56

简单清晰,不错不错!

TouDou 发表于 2019-6-14 10:05:04

学习一下,感谢分享

子津子铭 发表于 2019-6-29 23:18:05

大家基本上也都是这么写的吧 读写就是 流 的操作

guangshengsi 发表于 2019-7-12 09:32:03

183595412 发表于 2020-2-19 04:37:32

学习了。这是好资料。谢谢
页: [1] 2
查看完整版本: c++ 中最简单的文件读写