作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个结构数组,并且正在从 .txt 文件中读取结构元素。当我尝试从文件中扫描字符串时,我的程序停止,并且在调试代码块时显示“程序收到信号 SIGSEGV,段错误。”。我正在尝试从文件中读取字符串并将它们分配给我的结构。我该怎么办?
我的 .txt 文件如下:
H 1 1 MILK White liquid produced by the mammals
H 2 1 IN Used to indicate inclusion within space, a place, or limits
H 3 3 BUS A road vehicle designed to carry many passengers
H 5 3 DAN The name of a famous author whose surname is Brown
V 1 1 MIND A set of cognitive faculties, e.g. consciousness, perception, etc.
V 3 3 BAD Opposite of good
V 2 5 ISBN International Standard Book Number
我的 loadTextFile 函数将这些值分配给我的结构数组如下:
Word_t* loadTextFile(FILE* myfile, int nrWords)
{
Word_t* temp;
temp=malloc(sizeof(Word_t)*nrWords);
temp->word=malloc(MAX_WORD_LENGTH);
temp->clues=malloc(MAX_CLUES_LENGTH);
for(int count=0;count<nrWords;count++)
{
fscanf(myfile," %c %d %d %s %[^\n]%*c", &temp[count].direction,&temp[count].x, &temp[count].y, temp[count].word, temp[count].clues);
}
printf("ELEMENTS");
for(int i=0;i<nrWords;i++)
{
printf("%c %d %d %s %s\n", temp[i].direction, temp[i].x, temp[i].y,temp[i].word, temp[i].clues);
}
return temp;
}
我想让我的输出看起来像 txt 文件。
最佳答案
您已经发布了一小部分代码,但我认为您的问题根源在这里:
temp->word=malloc(MAX_WORD_LENGTH);
temp->clues=malloc(MAX_CLUES_LENGTH);
您实际上只为第一个元素(或者换句话说 temp[0]
)分配内存,但您需要为所有数组成员执行此操作。因此,您的代码应该是这样的:
for(int count=0;count<nrWords;count++)
{
temp[count]->word=malloc(MAX_WORD_LENGTH);
temp[count]->clues=malloc(MAX_CLUES_LENGTH);
fscanf(myfile," %c %d %d %s %[^\n]%*c", &temp[count].direction,&temp[count].x, &temp[count].y, temp[count].word, temp[count].clues);
}
我对这个错误表示支持,但是请记住学习利用调试器来查找这些小错误。
关于c - 如何将字符串扫描到结构数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49778457/
我是一名优秀的程序员,十分优秀!