2016-09-20 16 views
1

以下のヘッダーのコンストラクタシグネチャに問題があります。コンパイラは私にメッセージ与える:Error:expected ')' before '&'トークン

error: expected ')' before '&' token 

をしかし、私はこのエラーが発生した理由を、私は理由は、コンパイラが示していることだとは思わない見当がつかない。

#ifndef TextQuery 
#define TextQuery 

#include <fstream> 
#include <map> 
#include <memory> 
#include <set> 
#include <string> 
#include <sstream> 
#include <vector> 

using std::ifstream; 
using std::map; 
using std::shared_ptr; 
using std::set; 
using std::string; 
using std::istringstream; 
using std::vector; 

class TextQuery 
{ 
    public: 
     using line_no = vector<string>::size_type; 
     TextQuery(ifstream &); //!!!!error: expected ')' before '&' token 
    private: 
     shared_ptr<vector<string>> file; //input file 
     //map of each word to the set of the lines in which that word appears 
     map<string, shared_ptr<set<line_no>>> wm; 
}; 

//read the input file and build the map of lines to line numbers 
TextQuery::TextQuery(ifstream &is) : file(new vector<string>) 
{ 
    string text; 
    while(getline(is, text)) { //for each line in the file 
     file->push_back(text); //remember this line of text 
     int n = file->size() - 1; //the current line number 
     istringstream line(text); //separate the line into words 
     string word; 
     while(line >> word) { //for each word in that line 
      //if word isn't already in wm, subscripting adds a new entry 
      auto &lines = wm[word]; //lines id a shared_ptr 
      if(!lines) //that pointer is null the first time we see word 
       lines.reset(new set<line_no>); //allocate a new set 
      lines->insert(n); //insert this line number 
     } 
    } 
} 

#endif 
+2

@Barryは[MCVE]を回答に投稿しました。それが私たちがあなたから期待していたものです。 –

+1

注:インターフェイスメソッド名のようにC++(現在は未使用)でキーワード 'register'を使用している場合、同じエラーが発生します。 –

答えて

7

ヒント:何が間違っていますか?

#ifndef TextQuery 
#define TextQuery 

// .. 

class TextQuery { 
    // ... 
}; 

#endif 
+0

問題を解決するうまい方法: '#pragma once'を使うか、' #ifndef TextQuery_h'を使います。 – PanicSheep

+0

ありがとうございました。あなたの答えを読んだ後、私は自分のコードを修正しました。 –