gpt4 book ai didi

c - 在 lex 中使用 C 文件 IO 时出现问题

转载 作者:行者123 更新时间:2023-11-30 15:52:14 24 4
gpt4 key购买 nike

我正在实现一个用标准 C 编码的简单扫描程序的 lex 版本。我遇到的问题是 I/O 在 lex 文件中的行为不符合我的预期。 fscanf 不会存储字符串,而是将整数存储为我指示的变量中的 0。 fgetc 返回我的测试文件中不存在的字符。下面我的代码中是否有任何内容(或缺少某些内容)可以解释为什么会发生这种情况?我使用 lex 的方式完全错误吗?

扫描仪-lf.l:

%{
#include <stdio.h>
#include <stdlib.h>
extern int lineno;
extern int number;
extern char string[];
extern FILE *yyin;
#define INTEGER 1
#define FLOAT 2
#define READ 3
#define WRITE 4
#define ID 5
#define LPAREN 6
#define RPAREN 7
#define PLUS 8
#define MINUS 9
#define MULT 10
#define ASSIGN 11
#define DIV 12
#define COMMENT 13
#define ERROR 14
%}

%%
[ \t] {
printf("whitespace\n");
}
[0-9]* {
fscanf(yyin, "%d", &number);
printf("%d\n", number);
int c = fgetc(yyin);
printf("%c", c);
/*return INTEGER;*/
}
[a-zA-Z][a-zA-Z0-9]* {
fscanf(yyin, "%s", string);
printf("%s\n", string);
/*return ID;*/
}

扫描仪-lex.c:

#include <stdio.h>
#include <stdlib.h>
/* A couple of globals */
int lineno = 0;
int number;
char string[100];
FILE *yyin;
char charSet[] = { '(', ')', '+', '-', '*' };
#define INTEGER 1
#define FLOAT 2
#define READ 3
#define WRITE 4
#define ID 5
#define LPAREN 6
#define RPAREN 7
#define PLUS 8
#define MINUS 9
#define MULT 10
#define ASSIGN 11
#define DIV 12
#define COMMENT 13
#define ERROR 14

int yywrap(){
}

int main(int argc, char **argv){
int rc;
if (argc > 1){
yyin = fopen(argv[1], "r");
while ((rc=yylex())){
switch (rc){
case READ:
printf("found a read\n");
break;
case WRITE:
printf("found a write\n");
break;
case ID:
printf("found an id\n");
break;
case LPAREN:
printf("found an (\n");
break;
case RPAREN:
printf("found an )\n");
break;
case PLUS:
printf("found an +\n");
break;
case MINUS:
printf("found an -\n");
break;
case MULT:
printf("found an *\n");
break;
case ASSIGN:
printf("found an assign\n");
break;
case DIV:
printf("found a /\n");
break;
case INTEGER:
printf("found an integer\n");
break;
case FLOAT:
printf("found a float\n");
break;
case COMMENT:
printf("found a comment\n");
break;
case ERROR:
printf("Error\n");
break;
}
}
}
return 0;
}

最佳答案

这是错误的。

[0-9]* {
fscanf(yyin, "%d", &number);
printf("%d\n", number);
int c = fgetc(yyin);
printf("%c", c);
/*return INTEGER;*/
}

Lex 从文件读取到其内部缓冲区,然后在给定模式最大匹配时运行指定的操作。

让我们看一下 example from the Flex manual :

{DIGIT}+    {
printf( "An integer: %s (%d)\n", yytext,
atoi( yytext ) );
}

如您所见,

  1. 示例模式使用 + 而不是 *。您不想尝试匹配空字符串,因此您也应该使用 +

  2. 匹配模式的内容存储在yytext中。您不应尝试使用 fscanf() 从文件中读取模式,因为匹配的文本已被 lex 读取。因此,只需使用 number = strtol(yytext, NULL, 10); 在您的操作中。 (不要使用atoi(yytext)sscanf(yytext, "%i", &number)——如果你的数字有一个前导零。)

关于c - 在 lex 中使用 C 文件 IO 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14616571/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com