摘要: /*动态内存传递1在C中,使用指向指针的指针解决这个问题2在C++中,使用传递指针的引用3使用函数返回值来传递动态内存*/void GetMemory1(char **p,int num){ *p=(char*)malloc(sizeof(char)*num); } void GetMemory2(char *&p,int num){ p=(char*)malloc(sizeof(char)*num); } char* GetMemory3(int num){ char *p=(char*)malloc(sizeof(char)*num); retur... 阅读全文
posted @ 2013-11-24 10:17 任智康 阅读(573) 评论(0) 推荐(0) 编辑