web-dev-qa-db-ja.com

このifstreamエラーが発生するのはなぜですか?

Implicit instantiation of undefined template 'std::basic_ifstream<char,std::char_traits<char>>'


#ifndef MAPPER_H
#define MAPPER_H
#include <iostream>
#include <string>
#include <vector>
#include "KeyValue.h"
#include "Parser.h"

using namespace std;
class Mapper
{
public:
    Mapper(ifstream& infile);
    ~Mapper(void);
    void loadTokens();
    void showTokens();
    void map();
    void printMap();
    void printMap(string map_fileName);
private:
    ifstream inFile;  //<-- is where the error is happening
    vector<string> tokens;
    vector<KeyValue> map_output;
    Parser* parser;
};

#endif

私はstd::ifstreamそして、それはまだ動作しません。

私が#include <fstream> の代わりに #include <iostream>、これらのエラーはfstream.tccおよびbasic_ios.tcc

'operator=' is a private member of 'std::basic_streambuf<char>'

それはfstreamライブラリの一部なので、明らかに私がやっていることは間違っています...

誰でも助けることができますか?

36
OghmaOsiris

あなたは間違っている

#include <fstream>

おそらく、許可されていないinFileに何かを割り当てます。

85
Mika Fischer