尝试用 bison 和 flex 制作计算器,但它只打印出 0

Trying to make calculator with bison and flex, but it only prints out 0

我一直在关注 John Levine 在 flex 和 bison 一书中的教程,我试图在 flex 和 bison 的帮助下用 C 语言制作一个计算器。但是,当我尝试使用我的实现时,无论我输入什么计算,它都只会打印出 0。几个小时以来,我一直在努力寻找问题所在,但我看不出哪里出了问题。这是我的 flex、bison 和 makefile 的顺序:

calc.l

%{
 #include "calc.tab.h"
%}
%%
"+"     { return ADD; }
"-"     { return SUB; }
"*"     { return MUL; }
"/"     { return DIV; }
"|"     { return ABS; }
[0-9]+  { yylval = atoi(yytext); return NUMBER; }
\n      { return EOL; }
[ \t]   { }
"//".   { }
"("     { return OP; }
")"     { return CP; }
.       { printf("Unkown character: %s\n", yytext); }
%%

calc.y

%{
#include <stdio.h>
%}

%token NUMBER
%token ADD SUB MUL DIV ABS
%token EOL
%token OP CP

%%

calclist:
  | calclist exp EOL { printf("= %d\n", ); }
  ;

exp: factor        { $$ = ; }
  | exp ADD factor { $$ =  + ; }
  | exp SUB factor { $$ =  - ; }
  ;

factor: term        { $$ = ; }
  | factor MUL term { $$ =  * ; }
  | factor DIV term { $$ =  / ; }
  ;

term: NUMBER  { $$ = ; }
  | ABS term  { $$ =  >= 0?  : - ; }
  | OP exp CP { $$ = ; }
  ;
%%
main(int argc, char **argv)
{
  yyparse();
}

yyerror(char *s)
{
  fprintf(stderr, "error: %s\n", s);
}

生成文件

calc: calc.l calc.y
      bison -d calc.y
      flex calc.l
      cc -o $@ calc.tab.c lex.yy.c -lfl

在此制作中:

calclist exp EOL { printf("= %d\n", ); }

</code> 指的是 <code>calclist,但没有给非终结符一个值。

有一个值,你真正想要打印的是exp,它是右边的第二个符号,因此对应于.