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

第十六章,向txt文件中写入数据(C++)

时间:2015-06-09 13:46:15      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:c++   fstream   ofstream   

#include <iostream>
#include <fstream>

int main(int argc, char** argv) {

	//app是追加的意思,append
	//盘符后面一定是双斜杠  \\ 
	//没有这个文件,会自动创建 
	std::ofstream outfile("e:\\123.txt",std::ios::app);
	
	if(outfile.is_open()){
		outfile<<"ccccc";
		//outfile<<"ccccc"<<"\n";会换行 
	}else{
		std::cout<<"没有写入成功!"<<std::endl; 
	}
		std::cout<<"写入成功!"<<std::endl; 
	
	return 0;
}
调试截图

技术分享

第十六章,向txt文件中写入数据(C++)

标签:c++   fstream   ofstream   

原文地址:http://blog.csdn.net/qingbowen/article/details/46425729

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