从文件中获取一行,然后逐字阅读。 C ++

时间:2013-06-07 18:50:48

标签: c++ string word

我有一个trie,想要在txt文件的每一行中搜索常用单词的数量。 我使用getline获取该行但无法继续。

我试过

 string s;
    ifstream myfile;
    myfile.open("user.txt");
    getline(myfile,s);
    string person(s);
    istringstream iss(person);
    do
    {
       string sub;
       iss >> sub;
       cout << sub << endl;
     } while (iss);

但它说  'std :: istringstream iss'具有初始化程序但不完整的类型

2 个答案:

答案 0 :(得分:2)

#include <sstream>      // std::istringstream 

std::string s;
std::ofstream myfile("user.txt");
std::getline(myfile, s);
std::istringstream iss(s);
std::string sub;

while(iss >> sub)
{
   cout << sub << endl;
}

答案 1 :(得分:1)

你忘了#include <sstream>