我必须编写这两种方法,以打印出其中包含的内容:
ex 是一个由 tokenType tk 组成的数组(对不起,试图节省空间并避免发布整个结构)
不幸的是,我收到一个编译错误,上面写着:error: no match for âoperator[]â in âex[i]â
我该如何解决这个问题,以便它将覆盖<<,以便第二种方法使用第一种?
ostream & operator<< ( ostream & os , const tokenType & tk)
{
switch (tk.category)
{
case TKN_OPRAND:
os << tk.operand;
break;
case TKN_OPRTOR:
os << tk.symbol;
break;
}
return os;
}
ostream & operator<< ( ostream & os , const expression & ex)
{
tokenType tk;
for (int i = 0; i < ex.numTokens; i++)
{
tk = ex[i];
os << tk.operand << " "; //problem line is this one
}
return os;
}
struct expression
{
int numTokens ;
tokenType tokens[MAX_TOKENS_IN_EXPRESSION] ;
void print() const ;
int toPostfix( expression & pfx ) const ;
int evalPostfix( int & val ) ;
expression() { numTokens = 0 ; } ; // default constructor
} ;