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;
}
挺好挺好,写得不错 会不会每次都覆盖原来的内容 file.close();
这个是冗余代码,可以直接删除。 帮你顶上去,哈哈,不错不错 简单清晰,不错不错! 学习一下,感谢分享 大家基本上也都是这么写的吧 读写就是 流 的操作 学习了。这是好资料。谢谢
页:
[1]
2