想开个影视网站 那有做的,深圳各大网站制作哪家公司好,湖南网站设计企业,宁乡网站建设点燃网络模式介绍
模式标志描述ios::app追加模式#xff0c;所有写入都追加到文件末尾。ios::ate文件打开后定位到文件末尾。ios::in打开文件用于读取。ios::out打开文件用于写入。ios::trunc如果该文件已经存在#xff0c;其内容将在打开文件之前被截断#xff0c;即把文件长度设为…模式介绍
模式标志描述ios::app追加模式所有写入都追加到文件末尾。ios::ate文件打开后定位到文件末尾。ios::in打开文件用于读取。ios::out打开文件用于写入。ios::trunc如果该文件已经存在其内容将在打开文件之前被截断即把文件长度设为 0。
读取文件
#include fstream
using namespace std;vectorstring path;
ifstream fin(trainingset.txt);
if(fin.is_open()){while(!fin.eof()){string line;getline(fin,line);path.push_back(line);}
}
elsecoutopen file failed!endl;