首页 > 代码库 > C++对txt文本进行读写操作
C++对txt文本进行读写操作
输入输出,是每个程序员的基本功,尤其是对文本的输入和输出。最近,自己在这方面做了一些总结,不是很全面,希望在以后学习和工作的过程中慢慢补充,积累点点滴滴。P.S. 今天天气不错,雾霾散了,天空晴朗,惠风和畅,心情不错。
一、写操作
// set.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "iostream" #include "string" #include "fstream" using namespace std; int _tmain(int argc, _TCHAR* argv[]) { const string data = http://www.mamicode.com/(string)"hello"+"+"+"world";>二、读操作
// set.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "iostream" #include "string" #include "fstream" #include "vector" #include "sstream" using namespace std; struct personalinfo{ string name; vector<string> phones; }; int _tmain(int argc, _TCHAR* argv[]) { const string data = http://www.mamicode.com/"C://Users//helei//Documents//Visual Studio 2010//Projects//set//Release//hello+world";>C++对txt文本进行读写操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。