What is the difference between heap and stack? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is the difference between heap and stack?

25th Jan 2017, 8:43 AM
Ahmed Abd Elazeem
Ahmed Abd Elazeem - avatar
4 Answers
+ 13
Stack is used for static memory allocation and Heap for dynamic memory allocation, both stored in the computer's RAM . Variables allocated on the stack are stored directly to the memory and access to this memory is very fast, and it's allocation is dealt with when the program is compiled. When a function or a method calls another function which in turns calls another function etc., the execution of all those functions remains suspended until the very last function returns its value. The stack is always reserved in a LIFO order, the most recently reserved block is always the next block to be freed. This makes it really simple to keep track of the stack, freeing a block from the stack is nothing more than adjusting one pointer. Variables allocated on the heap have their memory allocated at run time and accessing this memory is a bit slower, but the heap size is only limited by the size of virtual memory . Element of the heap have no dependencies with each other and can always be accessed randomly at any time. You can allocate a block at any time and free it at any time. This makes it much more complex to keep track of which parts of the heap are allocated or free at any given time.
25th Jan 2017, 10:57 AM
Hassan Amr
Hassan Amr - avatar
+ 9
Check this site please .. they explained a good example on heap and stack memory ☺ http://www.journaldev.com/4098/java-heap-space-vs-stack-memory
25th Jan 2017, 4:43 PM
Hassan Amr
Hassan Amr - avatar
+ 1
Stack is used for static memory allocation and Heap for dynamicmemory allocation, both stored in the computer's RAM . Variables allocated on the stack are stored directly to the memory and access to this memory is very fast, and it's allocation is dealt with when the program is compiled.
25th Jan 2017, 4:45 PM
Sajjadeportivo
Sajjadeportivo - avatar
0
could you explain with example but by abrief?
25th Jan 2017, 4:35 PM
Ahmed Abd Elazeem
Ahmed Abd Elazeem - avatar