Please explain Heap and Stack to a new C#/Java developer.
|
2
|
|||
|
closed as exact duplicate by Jay Bazuzi, Kev, Greg Hewgill, Software Monkey Jan 26 '09 at 3:15 |
|
| This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. |
|
|
Jon Skeet's article is very good. |
||
|
|
In a sentence: If the reference (think pointer if your familiar with C) to your object is stored on the stack, it is lost at the end of your function call. When you are dealing with primitive types, such as structs and ints etc. these are stored IN FULL on the stack. Accessing the stack memory can be done quickly, allocating it is cheap as is destroying it, it's simply lost on the function return, with the Java or C# garbage collector picking up the object on the heap and destroying it. EDIT: I'll try to visualise for you:
Allocate integer and object onto stack, call funcB
Note that objectrefa and integera are still on the stack. now we return from FuncB
Now return from FuncA
Note that now the stack has no reference to objectrefA as we have returned from the function call. Additionally the primitive integera is simply gone, no need to call a function to dispose it, just return from the function call and it's gone. As I stated before, the garbage collector would now recognise that the object pointed to by reference objectrefa is now not being pointed to by anything which means it can be garbage collected. |
|||
|
|
|
|
Stacks store objects in a LIFO fashion, Last In First Out. objects are inserted onto the top of the "stack" and removed from here in reverse order of their insertion. useful for implementing an "undo" on a GUI. Heaps are a little more complicated and can vary in many ways, but the primary part of a heap is that it is "ordered" somewhat, where if you look at it like a tree, each child has some property comparable to the parent in common. for example, in a min-heap, each child is greater than its parent, resulting in the minimum value being held at the root of the tree. These are useful for implementing priority queues. From here there is a removeMin() function that removes the root and re-establishes a new one that still follows the hierarchy of the heap.this is the only way to remove values typically. its also how heapsort works; turn the list into a min or max heap and constantly remove all the items back into the list in order. |
||||
|
|
|
Not much to add to Jon Skeet's article, but when I was teaching C++ I pointed out that the stack was building DOWN in memory from a particular place and it would eventually run into the downward limit that it was allowed reach. If you tried to pass this then there would be a stack overflow error (funny, I seem to remember that name from somewhere else...oh, well, I'll think of it ...). If you put a variable in the heap, however, it was going into higher memory and building upwards so that the total memory in the system was more the limit. Thus, there was generally more room in the heap and larger variables should be put there whereas only a few small ones should be put into the stack (which was always in danger of suffering an overflow just from too many recursive calls, anyway!). |
||
|
|
