C语言中free释放内存函数的问题

请问使用malloc分配了内存,然后在使用free释放后,该内存中的数据还存在吗?是否完整?主要是学习链表的时候有一个释放动态内存的过程,比如:/*films2.c--u... 请问使用malloc分配了内存,然后在使用free释放后,该内存中的数据还存在吗?是否完整?
主要是学习链表的时候有一个释放动态内存的过程,比如:

/* films2.c -- using a linked list of structures */
#include <stdio.h>
#include <stdlib.h> /* has the malloc prototype */
#include <string.h> /* has the strcpy prototype */
#define TSIZE 45 /* size of array to hold title */
struct film {
char title[TSIZE];
int rating;
struct film * next; /* points to next struct in list */
};
int main(void)
{
struct film * head = NULL;
struct film * prev, * current;
char input[TSIZE];
/* Gather and store information */
puts("Enter first movie title:");
while (gets(input) != NULL && input[0] != '\0')
{
current = (struct film *) malloc(sizeof(struct film));
if (head == NULL) /* first structure */
head = current;
else /* subsequent structures */
prev->next = current;
current->next = NULL;
strcpy(current->title, input);
puts("Enter your rating <0-10>:");
scanf("%d", ¤t->rating);
while(getchar() != '\n')
continue;
puts("Enter next movie title (empty line to stop):");
prev = current;
}
/* Show list of movies */
if (head == NULL)
printf("No data entered. ");
else
printf ("Here is the movie list:\n");
current = head;
while (current != NULL)
{
printf("Movie: %s Rating: %d\n",
current->title, current->rating);
current = current->next;
}
/* Program done, so free allocated memory */
current = head;
while (current != NULL)
{
free(current);
current = current->next;
}
printf("Bye!\n");
return 0;
}
其中最后的释放过程,
while (current != NULL)
{
free(current);
current = current->next;
}
如果已经释放,那么为啥还能指到当前结构的next成员?
那么释放该内存后,这块内存,实际是把权限交出了,可以在使用了,那么只要不在使用,该内存的数据,和先前存入的一样?
展开
 我来答
kaixingui2012
推荐于2016-01-23 · TA获得超过4.2万个赞
知道大有可为答主
回答量:1.4万
采纳率:81%
帮助的人:6333万
展开全部
一、如果已经释放,那么为啥还能指到当前结构的next成员?
指针变量中存储的是内存地址,释放内存,只是将这块地址的使用权交出去了,而变量的值(地址)系统并不进行修改。释放的是内存,不是变量!!

二、那么释放该内存后,这块内存,实际是把权限交出了,可以在使用了,那么只要不在使用,该内存的数据,和先前存入的一样?
是的,如果没有在这块内存中重新写入数据,这块内存中的数据是不会发生变化的。

但是你的写法有可能会出问题
while (current != NULL)
{
free(current); //先释放,
current = current->next; //再使用该内存,会有BUG,随时都可能会有程序去占用或更改这块内存,而造成你的程序运行出错!
}
正确写法
while (current != NULL)
{
struct film *p=current ;
current = current->next;

free(p);
}
追问
这是书的作者写的,不过你写的这个改进版,真心觉得不错,这样也好理解,谢谢
flyfit
2012-11-24 · TA获得超过458个赞
知道小有建树答主
回答量:595
采纳率:66%
帮助的人:295万
展开全部
一样
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式