Heap-based memory allocation: Difference between revisions

Content deleted Content added
No edit summary
Cewbot (talk | contribs)
Tag: Redirect target changed
 
(9 intermediate revisions by 9 users not shown)
Line 1:
#REDIRECT [[Memory management#Manual memory management]]
In '''Heap Based Memory Allocation''', the memory is allocated from a large pool of unused memory area called the ''heap'' dynamically. Space requirement is calculated during allocation at run-time and allocated memory areas life cycle does not depend on the procedure entry/exit. The allocated area is reached indirectly, by pointers (or reference variables in Java and .NET). The alternative way to allcate memory is called [[Stack-Based Memory Allocation]].
 
{{R to section}}
See also: [[Dynamic memory allocation]])