gpt4 book ai didi

c++ - getline 函数不工作

转载 作者:行者123 更新时间:2023-11-30 01:26:24 25 4
gpt4 key购买 nike

有人能告诉我在 C++ 中使用 getline() 时要使用哪个 header 吗?我用过

#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
}

最佳答案

您需要 iostream,如果您使用的是 string,则可能需要 string。由于您没有提供其他信息,因此为什么这不起作用将成为一个谜。

关于c++ - getline 函数不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10522444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com