GetMemory错误讲解.docx

上传人:小飞机 文档编号:3157404 上传时间:2023-03-11 格式:DOCX 页数:3 大小:37.17KB
返回 下载 相关 举报
GetMemory错误讲解.docx_第1页
第1页 / 共3页
GetMemory错误讲解.docx_第2页
第2页 / 共3页
GetMemory错误讲解.docx_第3页
第3页 / 共3页
亲,该文档总共3页,全部预览完了,如果喜欢就下载吧!
资源描述

《GetMemory错误讲解.docx》由会员分享,可在线阅读,更多相关《GetMemory错误讲解.docx(3页珍藏版)》请在三一办公上搜索。

1、GetMemory错误讲解错误程序: void GetMemory( char *p ) p = (char *) malloc( 100 ); void Test( void ) char *str = NULL; GetMemory( str ); strcpy( str, hello world ); printf( “%s”,str ); 这个一个考验对指针理解的题目,上面程序在运行之后: 1,调用GetMemory( str )后, str并未产生变化,依然是NULL.只是改变的str的一个拷贝的内存的变化 2,strcpy( str, hello world );程序运行到这将产生

2、错误。 3,new的时候有可能内存出错,应该在*p = (char *) malloc( num ); 后判断内存是否申请成功,应加上: if ( *p = NULL ) ./进行申请内存失败处理 4,动态创建的内存没释放。 错误分析: 错认为 GetMemory(char *p)中的 p “就是” GetMemory(str)中的str。但p“不是”str,它只是“等于”str 。 就象: int a = 100; int b = a; / 现在b等于a b = 500; / 现在能认为a = 500 ? 显然不能认为a = 500,因为b只是等于a,但不是a! 当b改变的时候,a并不会改变

3、,b就不等于a了。 因此,虽然p已经有new的内存,但str仍然是null GetMemory(str); /把str传进去,str是一个指针,而他实际上是一个int void GetMemory(char *p) / p是str的一个副本 p=(char *)new char100; / p的值改变,但是str的值并没有改变。 而双重指针为什么就可以了呢: GetMemory(&str); /把str的地址传进去 void GetMemory(char * p) / p是str地址的一个副本 *p = (char *)new char100; / p指向的值改变,也就是str的值改变。 修改

4、方法1:(推荐使用这种方法) void GetMemory2(char *p)变为二级指针. void GetMemory2(char *p, int num) *p = (char *)malloc(sizeof(char) * num); void Test(void) char *str=NULL; GetMemory=(&str); strcpy(str,hello world); printf(str); 修改方法2: char *GetMemory char *p=(char *)malloc(100); return p; void Test(void) char *str=NULL; str=GetMemory; strcpy(str,hello world); printf(str); 附录A 试题5: char *GetMemory( void ) char p = hello world; return p; void Test( void ) char *str = NULL; str = GetMemory; printf( str ); 试题6: void GetMemory( char *p, int num )

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 生活休闲 > 在线阅读


备案号:宁ICP备20000045号-2

经营许可证:宁B2-20210002

宁公网安备 64010402000987号