我正在使用词法分析。为此我使用Flex
并获取以下问题。
int cnt = 0,num_lines=0,num_chars=0; // Problem here.
%%
[" "]+[a-zA-Z0-9]+ {++cnt;}
\n {++num_lines; ++num_chars;}
. {++num_chars;}
%%
int yywrap()
{
return 1;
}
int main()
{ yyin = freopen("in.txt", "r", stdin);
yylex();
printf("%d %d %d\n", cnt, num_lines,num_chars);
return 0;
}
然后,我使用以下命令,它可以正常工作并创建lex.yy.c
。
Rezwans-iMac:laqb-2 rezwan $ flex work.l
然后,我使用以下命令。
Rezwans-iMac:laqb-2 rezwan $ gcc lex.yy.c -o b
并获得关注error
:
work.l: In function ‘yylex’:
work.l:3:4: error: ‘cnt’ undeclared (first use in this function); did you mean int’?
[" "]+[a-zA-Z0-9]+ {++cnt;}
^~~
int
work.l:3:4: note: each undeclared identifier is reported only once for each function it appears in
work.l:4:4: error: ‘num_lines’ undeclared (first use in this function)
\n {++num_lines; ++num_chars;}
^~~~~~~~~
work.l:4:17: error: ‘num_chars’ undeclared (first use in this function); did you mean ‘num_lines’?
\n {++num_lines; ++num_chars;}
^~~~~~~~~
num_lines
work.l: In function ‘main’:
work.l:15:23: error: ‘cnt’ undeclared (first use in this function); did you mean ‘int’?
return 0;
^
int
work.l:15:28: error: ‘num_lines’ undeclared (first use in this function)
return 0;
^
work.l:15:38: error: ‘num_chars’ undeclared (first use in this function); did you mean ‘num_lines’?
return 0;
^
num_lines
如果我修改error
这样的文件,我就没有超过work.l
。
int cnt = 0,num_lines=0,num_chars=0; // then work properly above command.
%%
[" "]+[a-zA-Z0-9]+ {++cnt;}
\n {++num_lines; ++num_chars;}
. {++num_chars;}
%%
int yywrap()
{
return 1;
}
int main()
{ yyin = freopen("in.txt", "r", stdin);
yylex();
printf("%d %d %d\n", cnt, num_lines,num_chars);
return 0;
}
也就是说,如果我在此行1 tab
之前使用int cnt = 0,num_lines=0,num_chars=0;
,它就能正常运作。
现在我有两个问题:
是否必须在此行1 tab
之前使用int cnt = 0,num_lines=0,num_chars=0;
?为什么?逻辑解释。
是解决此错误的另一种解决方案吗?
答案 0 :(得分:6)
我对标签问题不是很确定,但有一种解释是,如果你没有放置标签并在第一部分写一下这样的话:
int cnt = 0;
然后请注意,在第一部分中,您还可以编写"快捷方式"像:
Digit [0-9]
这是一个正则表达式,用于定义数字而不是一直写[0-9]
来表示数字。
因此,在不使用tab的情况下在第一列中编写int cnt = 0;
就像定义关键字int一样(这可能是错误告诉您did you mean int’?
的原因)。因此,tab是一种区分上述两种情况的方法。
根据flex 为了编写c / c ++代码,需要在内部:
%{ ... c/c++ code... %}
所以对于你的例子:%{ int cnt = 0,num_lines=0,num_chars=0; %}
所以我最好的方法是在%{ %}
内编写你的c代码。