基本的なコンパイラのシンボル テーブルを作成しようとしています。Symbol クラスには 2 つのコンストラクターがあります。1 つは 4 つのパラメーターを受け取り、もう 1 つは 5 を受け取ります。コンパイラは、5 つのパラメーターを持つシンボル b について不平を言います。
error: no matching function for call to ‘Symbol::Symbol(std::string&, std::string&, int, kind, int)’
symbol.h:14: note: candidates are: Symbol::Symbol(const Symbol::string&, const Symbol::string&, int, kind)
symbol.h:6: note: Symbol::Symbol(const Symbol&)
そこにあるので、呼び出す一致する関数がないと言っている理由がわかりません。「const Symbol::string&」が「std::string&」と異なることが問題を引き起こしているかどうか、またはそうである場合の修正方法はわかりませんが。
主なものは次のとおりです。
int main(){
string x="x";
string y="y";
Symbol a(x,"int",0,SCALAR);
Symbol b(y,"char",0,ARRAY,5);
//operator << is overloaded
cout << a << endl;
cout << b << endl;
return 0;
}
シンボル.h:
#ifndef SYMBOL_H
#define SYMBOL_H
#include "type.h"
#include <string>
class Symbol{
typedef std::string string;
string _name;
Type _type;
public:
const string& getName() const;
const Type& getType() const;
Symbol(const string& name, const string& specifier, int indirection, kind kind);
Symbol(const string& name, const string& specifier, int indirection, kind kind, int length);
};
std::ostream& operator<<(std::ostream& ostr, const Symbol& symbol);
#endif /*SYMBOL_H*/
シンボル.cpp
#include "symbol.h"
#include <iostream>
using namespace std;
/*other member function definitions*/
Symbol::Symbol(const string& name, const string& specifier, int indirection, kind kind)
{
_name = name;
Type a(specifier,indirection,kind);
_type = a;
}
Symbol::Symbol(const string& name, const string& specifier, int indirection, kind kind, int length)
{
_name = name;
/*Type is another class that holds the description of the type of the
*particular variable, function,etc. declaration
*/
Type a(specifier,indirection,kind,length);
_type = a;
}