1.malloc / free
这个是C++/C 的标准库函数
char* p=(char*)malloc(sizeof(char)*num);
2.new / delete
这个是C++的运算符
char* p=new char[20];