在我最后的项目中给我留下了几个代码,其中一个是用于 flex & bison 的代码。问题是 gcc 在野牛文件中向我返回消息“请求成员 ' db ' 不是结构或联合” ...我不知道如何解决这个问题,我找到了解决方案的示例,但没有一个对我有用。我希望我能帮忙,提前谢谢。
弹性文件:
%{
#include <stdlib.h>
#include "y.tab.h"
#include <stdio.h>
#include <string.h>
#include <ctype.h>
%}
%option noyywrap
%option yylineno
digit [0-9]
blank [\t]
sign [+-/*]
other .
%%
{digit}+ { sscanf(yytext, "%lf", &yylval.db); return NUMBER;}
{digit}+\.{digit}* { sscanf(yytext, "%lf", &yylval.db); return NUMBER;}
\.{digit}+ { sscanf(yytext, "%lf", &yylval.db); return NUMBER;}
sign return *yytext;
{blank}+ ;
{other} return yytext[0];
%%
int main()
{
if (yyparse()==0){
printf("\n NO ERROR");}
return 0;
}
int yyerror(char * mensaje)
{
printf("\n AND STOP");
printf("\n ERROR: %s",mensaje);
printf("\n ERROR LINE: %d",yylineno);
return 0;
}
野牛档案:
%{
#include <stdio.h>
#include <stdlib.h>
char result[100];
%}
%union { double db; int i; }
%token NUMBER
%left '-' '+'
%left '*' '/'
%left '(' ')'
%nonassoc UMINUS
%type<db> list NUMBER
%type<i> expression
%start list
%%
list : expression { printf("\nResultado: %5g\n",$$.db);}
;
expression : expression '+' expression { $$.db = $1.db + $3.db; }
| expression '-' expression { $$.db = $1.db - $3.db; }
| expression '*' expression { $$.db = $1.db * $3.db; }
| expression '/' expression { if ($3.db==(double)0) yyerror("Division por cero\n");
else $$.db = $1.db / $3.db; }
| '-' expression %prec UMINUS { $$.db = -$2.db; }
| '(' expression ')' { $$.db = $2.db; }
| NUMBER { $$.db = $1.db; }
;