模擬malloc - free 函數動態分配內存

本文使用一個全局大數組來模擬物理內存的堆,而後在這個模擬對上進行動態內存分配 代碼以下:node #include <iostream> #include <stdlib.h> #include <stdio.h> using namespace std; #define MEM_POOL_SIZE (2048) char memPool[MEM_POOL_SIZE] = {0}; #def
相關文章
相關標籤/搜索