#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char name[100];
char *description;
strcpy(name, "Zara Ali");
/* 动态分配内存 */
description = (char *)malloc( 30 * sizeof(char) );
if( description == NULL )
{
fprintf(stderr, "Error - unable to allocate required memory\n");
}
else
{
strcpy( description, "Zara ali a DPS student.");
}
/* 假设您想要存储更大的描述信息 */
description = (char *) realloc( description, 100 * sizeof(char) );//如果此处失败了,怎样释放向前的30byte的内存呢?
if( description == NULL )
{
fprintf(stderr, "Error - unable to allocate required memory\n");
}
else
{
strcat( description, "She is in class 10th");
}
printf("Name = %s\n", name );
printf("Description: %s\n", description );
/* 使用 free() 函数释放内存 */
free(description);//如果重新分配失败了,这里就没有地址值,不能真正的释放已经分配的内存
}
在使用realloc()重新分配内存大小的时候失败了,怎样去释放更改前的内存?
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- a5156520 2022-05-23 14:16关注
下面是我的理解,供参考:
用一个char指针保存description之前的值,然后当description再次指向新的分配内存后,如果内存分配失败,就用fre
e函数释放这个char指针指向的内存块。(参考:C Primer Plus 第六版第399页 )#include <stdio.h> #include <stdlib.h> #include <string.h> int main() { char name[100]; char *description; strcpy(name, "Zara Ali"); /* 动态分配内存 */ description = (char *)malloc( 30 * sizeof(char) ); char * td = description; if( description == NULL ) { fprintf(stderr, "Error - unable to allocate required memory\n"); } else { strcpy( description, "Zara ali a DPS student."); } // printf("before td=%s\n",td); /* 假设您想要存储更大的描述信息 */ description = NULL;//(char *) realloc( description, 100 * sizeof(char) );//如果此处失败了,怎样释放向前的30byte的内存呢? if( description == NULL ) { fprintf(stderr, "Error - unable to allocate required memory\n"); free(td); printf("after td: %s\n", td ); } else { strcat( description, "She is in class 10th"); } printf("Name = %s\n", name ); printf("Description: %s\n", description ); /* 使用 free() 函数释放内存 */ free(description);//如果重新分配失败了,这里就没有地址值,不能真正的释放已经分配的内存 //printf("Description: %s\n", description ); }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报 编辑记录
悬赏问题
- ¥15 乌班图ip地址配置及远程SSH
- ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
- ¥15 PSPICE制作一个加法器
- ¥15 javaweb项目无法正常跳转
- ¥15 VMBox虚拟机无法访问
- ¥15 skd显示找不到头文件
- ¥15 机器视觉中图片中长度与真实长度的关系
- ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
- ¥15 java 的protected权限 ,问题在注释里
- ¥15 这个是哪里有问题啊?