我有以下代码,当我运行以下命令时,它会给出错误“”hello.l“,第31行:过早的EOF” flex hello.l
%{
#include <stdlib.h>
#include "y.tab.h"
%}
%%
("hi"|"oi")"\n" {return HI; }
("tchau"|"bye")"\n" {return BYE;}
. {yyerror(); }
%%
int main(void)
{
yyparse();
return 0;
}
int yywrap(void)
{
return 0;
}
int yyerror(void)
{
printf("Error\n");
exit(1);
}
答案 0 :(得分:24)
问题在于您的%}
- flex 非常对间距非常敏感。删除前面的空格,一切都很好。
另外,如果您不想使用yywrap功能,可以将%option noyywrap
粘贴到flex文件中。
答案 1 :(得分:5)
改变这个:
%{
#include <stdlib.h>
#include "y.tab.h"
%}
对此:
%{
#include <stdlib.h>
#include "y.tab.h"
%}
适用于flex 2.5.35(mingw)