请求成员“”在非结构或联合的东西?在Flex& Bison中

时间:2013-10-31 06:55:21

标签: gcc bison yacc lex flex-lexer

在我的最后一个项目中给我留下了几个代码,其中一个就是flex&野牛。 问题是gcc在bison文件中向我返回消息“请求成员' db ',而不是结构或联合” ... 我不知道如何解决这个问题,我找到解决方案的例子,但没有一个对我有用。 我希望我能提前帮助。

Flex文件:

%{
 #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; } 
            ;

1 个答案:

答案 0 :(得分:1)

当您声明expression的类型为i%type<i> expression)时,您告诉Bison无论您在何处放置表达式,堆栈值都应为{{1变种。因此,在所有.i作品中,expression已经代表了$$联盟成员;如果你写一个明确的.i,那么你最终会生成.db。但是yylval.i.db是一个int,它不是strut或union,因此不能有任何成员。

我强烈怀疑您希望yylval.i的类型为expression,但无论它是什么,您都不必(实际上不能)在您的操作中明确指定联合成员