当前位置:主页 > 软件编程 > C代码 >

C++实现一行一行读取文本的方法

时间:2021-08-01 08:55:04 | 栏目:C代码 | 点击:

如下所示:

#include<iostream>
#include<fstream>
#include<string>
int main(int argv,char *arg[]) 
{ 

 fstream  f("dictionary.txt");//创建一个fstream文件流对象
 vector<string> words; //创建一个vector<string>对象
 string  line; //保存读入的每一行
 while(getline(f,line))//会自动把\n换行符去掉 
 {
  words.push_back(line); 
 }
 //dictionary.txt在csdn里面可以下载,里面有4万多个单词,相当于一个字典
 cout << "共有单词数目:" << words.size() << endl;
 return 0;

}

您可能感兴趣的文章:

相关文章