gpt4 book ai didi

c - 读取文件时出现段错误

转载 作者:行者123 更新时间:2023-11-30 18:55:00 25 4
gpt4 key购买 nike

我正在读取一个文件,其中存储了我稍后必须绘制的信息。当我读取文件时,我可以收集我需要的信息(使用 printf 只是为了验证值是否存储在正确的位置),但我似乎无法离开循环。

void getInfo(info *rooms, borderControl *doors, FILE *file)
{
char buffer[150];
char tempStorage[10];
char *temp;
char *locaOne, *locaTwo;

temp = tempStorage;
temp = malloc(sizeof(tempStorage));

while(fgets(buffer, 150, file) != NULL)
{
printf("Inside fgets loop\n");
temp = strtok_r(buffer, " ", &locaOne);
rooms->size[0] = atoi(strtok(temp, "x"));
rooms->size[1] = atoi(strtok(NULL, " "));
temp = strtok_r(NULL, " ", &locaOne);

while(temp != NULL)
{
printf("Inside line loop\n");
if (temp[0] == 'g') //gold
{
printf("Inside gold\n");
temp++;
rooms->gold[0] = atoi(strtok_r(temp, ",", &locaTwo));
rooms->gold[1] = atoi(strtok_r(NULL, " ", &locaTwo));
drawRooms(rooms, doors);
}
else if (temp[0] == 'h') //hero
{
temp++;
rooms->heroPosi[0] = atoi(strtok_r(temp, ",", &locaTwo));
rooms->heroPosi[1] = atoi(strtok_r(NULL, " ", &locaTwo));
drawRooms(rooms,doors);
}
else if (temp[0] == 's') //staris
{
temp++;
rooms->stairs[0] = atoi(strtok_r(temp, ",", &locaTwo));
rooms->stairs[1] = atoi(strtok_r(NULL, " ", &locaTwo));
drawRooms(rooms,doors);
}
else if (temp[0] == 'd') //doors
{
temp++;
rooms->door[0] = atoi(strtok_r(temp, ",", &locaTwo));
rooms->door[1] = atoi(strtok_r(NULL, " ", &locaTwo));
drawRooms(rooms,doors);
}
else if (temp[0] == 'm') //magic
{
temp++;
rooms->magic[0] = atoi(strtok_r(temp, ",", &locaTwo));
rooms->magic[1] = atoi(strtok_r(NULL, " ", &locaTwo));
drawRooms(rooms,doors);
}
else if (temp[0] == 'p') //potion
{
temp++;
rooms->magic[0] = atoi(strtok_r(temp, ",", &locaTwo));
rooms->magic[1] = atoi(strtok_r(NULL, " ", &locaTwo));
drawRooms(rooms,doors);
}
else if (temp[0] == 'w') //weapon
{
temp++;
rooms->weapon[0] = atoi(strtok_r(temp, ",", &locaTwo));
rooms->weapon[1] = atoi(strtok_r(NULL, " ", &locaTwo));
drawRooms(rooms,doors);
}
else if (temp == NULL)
{
break;
}
else
{
temp = strtok_r(NULL, " ", &locaOne);
if(temp == NULL)
{
break;
}
}
temp = strtok_r(NULL, " ", &locaOne);
}
printf("here\n");
}

我使用以下方式调用此函数:

FILE *file;
file = fopen(argv[1], "r");
if (file == NULL)
{
printf("Error! Could not open file.\n");
return 0;
}
else
{
initscr();
getInfo(rooms, doors, file);
}

没有任何编译错误/警告,但是当我运行程序时,我得到:

Inside fgets loop
Inside line loop
Inside gold
Inside fgets loop
Inside fgets loop
Segmentation fault (core dumped)

最佳答案

fgets() 仅当无法读取字符时才返回 NULL。

您需要做的是检查 feof(file)。当您完成读取文件时,EOF 位设置为 1,并且 feof() 返回 true;

关于c - 读取文件时出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29019389/

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