| 释义 |
malloc
mallocC's standard library routine for storage allocation. Ittakes the number of bytes required and returns a pointer to ablock of that size. Storage is allocated from a heap whichlies after the end of the program and data areas. Memoryallocated with malloc must be freed explicitly using the"free" routine before it can be re-used.
gc is a storage allocator with garbage collection that isintended to be used as a plug-in replacement for malloc.MALLOC
| Acronym | Definition |
|---|
| MALLOC➣Memory Allocation | | MALLOC➣Multicast-Address Allocation |
|