下面定义一个不易发生错误的内存分配器
本人看不懂,求解释;
例如 第一个#define
#include<stdlib.h>
#define malloc
#define MALLOC(num,type) (type *)alloc((num)*sizeof(type))
extern void*alloc(size_t size);
你学习过宏的概念吗?
没有,这段代码我是在C和指针上看到的,当中有解释,但我还是看不明吧
@HaoTim: 没有那就先去学习下呗。