我有一个问题,即在我的flex文件的定义部分中声明全局范围指针,然后在我的main的开头我malloc
,但是 as我的程序一旦进入yylex()
, ,指针的值就会设置为NULL
。
在我的程序中我需要指向struct
(这是struct Modele * model
)的指针,它基本上是指向我存储文件中所有结果的结构的指针,所以我实际上离不开它,至少没有指向结构的指针,它在main()
和yylex()
都可以正常工作。
执行时,程序会遇到段错误,试图写入地址0x4;在valgrind下运行程序,打印model
的值让我明白内存已正确分配,但是一旦yylex被调用,model
的值就是NULL
(打印(nil)
)。我没有在这里使用任何标题,但我尝试使用一个来存储我的所有结构,以及我的全局范围变量的声明,但没有成功。
我的问题是:面对这种行为我做错了什么?通常最好不要遇到这个问题的方法是什么?我不确定我是否使用过全局范围指针,所以可能是这个,或者也许是特定于flex-lex的问题......我有点迷失了!
以下是我的代码示例:
%{
#include <stdlib.h>
#include <stdio.h>
//some more includes and #defines
typedef struct Doc {
int classe;
uint32_t * words;
int current_index;
int current_size;
} doc;
typedef struct Modele {
int nb_classes;
int nb_docs;
int nb_docs_base;
int nb_docs_test;
int base_or_test;
int voc_size;
int M_test_size;
liste ** M_theta;
row_info * M_calc;
doc * M_test;
} modele;
//some more typedefs
modele * model; // <--- this is the pointer i talk about
//some more functions bodies .....
%}
couple_entiers [0-9]+:[0-9]+
// .......
%%
{couple_entiers} { model->nb_docs ++}
//.....
%%
int main (int argc, char ** argv)
{
// .....
modele * model = malloc(sizeof model); // <---- here is the malloc
model->nb_classes = 0;
model->nb_docs = 0;
model->nb_docs_base = 0;
model->nb_docs_test = 0;
model->voc_size = 0;
model->M_test = malloc (TAB_SIZE * sizeof(doc));
//....
if ((yyin = fopen(argv[1],"r")) == NULL){
printf("Impossible d'ouvrir %s !\n",argv[1]);
exit(0);
}
yylex();
如果这段代码不足以抓住问题的根源,我会粘贴更多的代码,我只是想选择相关的部分。
答案 0 :(得分:2)
我的问题是:面对这种行为我做错了什么?
您从未设置过文件范围变量。您的main()
函数会声明并初始化具有相同名称和类型的 local 变量。当地宣言&#34;阴影&#34;其范围内的文件范围。
要修复它,只需更改此...
modele * model = malloc(sizeof model);
......对此:
model = malloc(sizeof model);
如果你没有在变量名前加上一个类型,那么你指的是在别处声明的变量(在这种情况下,在文件范围内)。