gpt4 book ai didi

c - 怎么修?尝试释放动态分配的内存时触发异常

转载 作者:行者123 更新时间:2023-11-30 14:43:21 25 4
gpt4 key购买 nike

这是我第一次发布问题,我确实尝试寻找解决方案,但是,即使我找到了它,我也不认识它。

因此,正如标题所示,问题出在这个触发的异常“lab10.exe 中的 0x0F26372D (ucrtbased.dll) 处抛出异常:0xC0000005:访问冲突读取位置 0xCCCCCCCC4”。

如果有针对此异常的处理程序,则程序可以安全地继续。”,当我进入 line -> free(word) 时会发生这种情况。

当我学习 malloc 时,这种情况确实发生过几次,但我忽略了它 - 认为还有其他问题。但现在我发现我做错了。

该程序的要点是 - 编写结构体“word”。我需要输入句子并将其“切割”成单词,然后将每个单词与单词中字母的大小和单词的序数一起放入结构体中。

#include <stdio.h>
#include <string.h>

struct word {
char text_word[50];
unsigned sizee; //number of letters of the word
unsigned number; //ordinal number of the word
};

void cutting_sentence(struct word *p, char *sen) { //sen is sentence
int size_sen, i, j;

size_sen = strlen(sen) + 1; //size of sentence

p = (struct word*)malloc(size_sen * sizeof(struct word));
if (p == NULL) {
printf("\nNot enaugh memory!");
return 0;
}

strcpy(p[0].text_word, strtok(sen, " ,.!?"));
p[0].sizee = strlen(p[0].text_word);
p[0].number = 1;

printf("word:%s \t size:%u \t ordinal number of the word:%u\n",
p[0].text_word, p[0].sizee, p[0].number);

for (i = p[0].sizee - 1, j = 1;i < size_sen;++i) {
if (*(sen + i) == ' ' || *(sen + i) == '.' || *(sen + i) == ','
|| *(sen + i) == '?' || *(sen + i) == '!') {
strcpy(p[j].text_word, strtok(NULL, " ,.!?"));
p[j].sizee = strlen(p[j].text_word);
p[j].number = j + 1;

printf("word:%s \t size:%u \t ordinal number of the
word:%u\n", p[j].text_word, p[j].sizee, p[j].number);

j++;
}
}
}

int main() {
char sentence[1024];
struct word *word;

printf("Sentence: ");
gets(sentence);

cutting_sentence(&word, sentence);

free(word); //here is exception triggered

return 0;
}

最佳答案

您正在更改传递的指针参数的本地值,您需要更改其目标处的内存,以便调用者发现分配的内存的位置。由于您没有这样做,因此您尝试释放存储在 main() 堆栈中的局部变量 word

首先要解决的问题是不要使用与类型名称相同的变量,那是邪恶的。

然后更改函数原型(prototype)以传递双指针:

void cutting_sentence(struct word **p, char *sen);

请记住,您在使用 p 的地方现在需要使用 *p 或首先分配一个本地 (word *) 以及其中包含地址值。

void cutting_sentence(struct word **p, char *sen) { //sen is sentence
int size_sen, i, j;

size_sen = strlen(sen) + 1; //size of sentence

*p = (struct word*)malloc(size_sen * sizeof(struct word));
if (*p == NULL) {
printf("\nNot enaugh memory!");
return; //void cannot return a value
}

依此类推,将 p 的每个用法更改为 *p

然后

int main() {
char sentence[1024];
struct word *words;

printf("Sentence: ");
gets(sentence);

cutting_sentence(&words, sentence);

if (words != NULL)
free(words); //now valid

return 0;
}

关于c - 怎么修?尝试释放动态分配的内存时触发异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53973286/

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