码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 读入和写入文件

时间:2018-05-23 17:08:30      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:str   fstream   pre   tmp   while   nbsp   ifstream   line   get   

读入

#include<ifstream>

ifstream infile;
infile.open(img_dir);
while(getline(infile,tmp)){

}

写入

#include <fstream>

ofstream outfile;
outfile.open(txt_dir)
outfile<<123<<endl;
outfile.close();

 

c++ 读入和写入文件

标签:str   fstream   pre   tmp   while   nbsp   ifstream   line   get   

原文地址:https://www.cnblogs.com/ymjyqsx/p/9077521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!