摘要:
/*动态内存传递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... 阅读全文