是否有人可以告訴我用在C使用函數getline()++這頭。我已經使用getline函數的工作不
#include<iostream>
#include<string>
#include<stdio.h>
#include<stdlib.h>
using namespace std;
他們沒有一個似乎在工作。
這裏是我寫的整個代碼到目前爲止
#include "stdafx.h"
#include<iostream>
#include<string>
#include<vector>
#include<set>
#include<map>
using namespace std;
class TextQuery
{
typedef map<string, set<string::size_type> > word_map;
TextQuery(ifstream &file)
{
FillLineVector(file);
BuildMap(file);
}
void query(string);
private:
word_map map;
vector<string> LineVector;
void FillLineVector(const ifstream&);
void BuildMap(const ifstream&);
};
void TextQuery::FillLineVector(const ifstream& file)
{
string line;
while(getline(file,line)); //error:getline identifier not found
}
你說的「不工作」是什麼意思?請更具體。 – suszterpatt
請向您的問題添加代碼,該代碼使用getline。 –
編輯包括後 – user1232138