c - 在函数 ‘yylex’ : 'Variable’ undeclared 中

标签 c bison flex-lexer lexical-analysis

我正在使用词法分析。为此,我使用 Flex我获取以下问题。

工作.l

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. 有必要使用1 tab在此行之前 int cnt = 0,num_lines=0,num_chars=0; ?为什么?逻辑地解释。

  2. 是否有其他解决方案可以解决此错误?

最佳答案

我不太确定选项卡问题,但一个解释是,如果您不放置选项卡并在第一部分中编写如下内容:

int cnt = 0;

然后请注意,在第一部分中您还可以编写“快捷方式”,例如:

Digit  [0-9] 

这是一个正则表达式,定义数字是什么,而不是一直写[0-9]来表示数字。

所以当写int cnt = 0;时在第一列中不使用 tab 就像定义关键字 int (这可能就是错误告诉您 did you mean int’? 的原因)。所以tab是区分上面两种情况的一种方式。

According to flex in order to write c/c++ code it needs to be inside: %{ ... c/c++ code... %} so for your example:

%{
   int cnt = 0,num_lines=0,num_chars=0;
%}

所以我认为最好的方法是将你的c代码写在 %{ %} 中.

关于c - 在函数 ‘yylex’ : 'Variable’ undeclared 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46407068/

相关文章:

c - 在c中表示汉字

PS3 的 C++ 内存编写

c++ - 在flex中匹配C风格多行注释的最佳解决方案?

c++ - 将 Flex/Bison 与外部程序集成

makefile - Yacc 和 Lex 包含混淆

c - C 在编译过程中何时需要空格(或括号)?

CUDA 编译器错误。没有指定输入文件;

c - 如何将给定级别的二叉搜索树转换为链接链?

c - Yacc - 使用 %union 和链表构建数据结构

flex-lexer - "%option nodefault "原因 "flex scanner jammed"