博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++读写文件
阅读量:5046 次
发布时间:2019-06-12

本文共 768 字,大约阅读时间需要 2 分钟。

头文件

>#include
>#include
>#include
>#include
>#include
>#include
>#include
>#include
>using namespace std;

读取代码段

使用ifstream 然后对C++进行文件的读取

int main() {    string buffer, filepath = "test.txt";    ifstream myfile(filepath.c_str());    //等同于 ifstream myfile("test.txt");    while(getline(myfile, buffer)) {        cout << buffer << endl;    }    myfile.close();    return 0;}

使用ofstream 然后对C++进行文件的写入

写入代码段

int main() {    string filepath = "test.txt";    //ofstream myfile("test.txt");    ofstream myfile(filepath.c_str());    myfile << "hbhh" << endl;    myfile << "aaaaa" << endl;    myfile.close();    return 0;}

转载于:https://www.cnblogs.com/zoey686/p/11539766.html

你可能感兴趣的文章
windows上面链接使用linux上面的docker daemon
查看>>
Redis事务
查看>>
Web框架和Django基础
查看>>
python中的逻辑操作符
查看>>
HDU 1548 A strange lift (Dijkstra)
查看>>
每天一个小程序—0005题(批量处理图片大小)
查看>>
IIS的各种身份验证详细测试
查看>>
JavaScript特效源码(3、菜单特效)
查看>>
Linux常用命令总结
查看>>
yii模型ar中备忘
查看>>
C#线程入门
查看>>
CSS清除浮动方法
查看>>
JVM内存回收机制简述
查看>>
洛咕 P2480 [SDOI2010]古代猪文
查看>>
js-创建对象的几种方式
查看>>
JDK JRE Java虚拟机的关系
查看>>
2018.11.20
查看>>
word20161215
查看>>
12th week blog
查看>>
dijkstra (模板)
查看>>