Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In your actual programming experience, how did this knowledge of STACK and HEAP actually rescue you in real life? Any story from the trenches? Or is this concept good for filling up programming books and good for theory?

share|improve this question
2  
This is more of a discussion topic than a question with a real answer; consider switching this to a wiki. – Ron Warholic Oct 13 '09 at 16:20
It does seem more of a discussion given the answers posted so far. This question can be answered either "Concept not useful", or "Concept useful and here's an example of how". "Concept useful" with no specific example doesn't actually answer the question. – sylvanaar Oct 13 '09 at 17:05
see this post talks about the stack and heap for .net stackoverflow.com/questions/12727821/… – denas Oct 9 '12 at 18:03

7 Answers

up vote 5 down vote accepted

I've analyzed many memory dumps over the years and found it extremely helpful knowing the internals and differences between the two. Most of these have been OutOfMemory conditions and unstable applications. This knowledge is absolutely necessary to use WinDbg when looking at dumps. When investigating a memory dump, knowing how memory is allocated between the kernel/user-mode process and the CLR can at least tell you where to begin your analysis.

For example, let's take an OOM case: The allocated memory you see in the Heap Sizes, Working Set, Private Memory, Shared Memory, Virtual Memory, Committed Memory, Handles, and Threads can be a big indicator of where to start.

There about 8 different heaps that the CLR uses:

  1. Loader Heap: contains CLR structures and the type system
  2. High Frequency Heap: statics, MethodTables, FieldDescs, interface map
  3. Low Frequency Heap: EEClass, ClassLoader and lookup tables
  4. Stub Heap: stubs for CAS, COM wrappers, P/Invoke
  5. Large Object Heap: memory allocations that require more than 85k bytes
  6. GC Heap: user allocated heap memory private to the app
  7. JIT Code Heap: memory allocated by mscoreee (Execution Engine) and the JIT compiler for managed code
  8. Process/Base Heap: interop/unmanaged allocations, native memory, etc

Finding what heap has high allocations can tell me if I have memory fragmentation, managed memory leaks, interop/unmanaged leaks, etc.

Knowing that you have 1MB of stack space allocated for each thread that your app uses reminds me that if I have 100 threads you will have an additional 100MB of memory usage.

I had a client that had Citrix servers crashing with OutOfMemory problems, being unstable, slow responsiveness when their app was running on it in multiple sessions. After looking at the dump (I didn't have access to the server), I saw that there were over 700 threads being used by that instance of the app! Knowing the thread stack allocation, allowed me to correlate the OOMs were caused by the high thread usage.

In short, because of what I do for my "role", it is invaluable knowledge to have. Of course even if you're not debugging memory dumps it never hurts either!

share|improve this answer

The distinction in .NET between the semantics of reference types and value types, is a much more important concept to grasp.

Personally, I have never bothered thinking about the stack or heap in all my years of coding (just CLR based).

share|improve this answer
Same for me..... – Meta-Knight Oct 13 '09 at 16:22
1  
mmm - It's difficult to understand reference type vs value type semantics (especially the why behind them) without understanding the stack and heap. – Reed Copsey Oct 13 '09 at 16:28
Maybe a better question would be: "Explain why value::reference != stack::heap". :) – Craig Stuntz Oct 13 '09 at 16:50
Jon Skeet has already answered that question yoda.arachsys.com/csharp/memory.html – MarkJ Oct 13 '09 at 16:56
4  
@Reed, I disagree entirely. Using Heap vs. Stack to explain reference vs. value type semantics generally results in confusion and disinformation. – tnyfst Nov 3 '10 at 20:45

It certainly is helpful to understand the distinction when one is building compilers.

Here are a few articles I've written about how various issues in memory management impact the design and implementation of the C# language and the CLR:

http://blogs.msdn.com/ericlippert/archive/tags/Memory+Management/default.aspx

share|improve this answer

I don't think it matters if you're just building average business applications, which I think most .NET programmers are.

The books I've seen just mention stack and heap in passing as if memorizing this fact is something of monumental importance.

share|improve this answer

Personally, this is one of the very few technical questions that I ask every person I'm going to hire.

I feel that it is critical to understanding how to use the .NET framework (and most other languages). I never hire somebody who doesn't have a clear understanding of memory usage on the stack vs. the heap.

Without understanding this, it's almost impossible to understand the garbage collector, understand .NET performance characteristics, and many other critical development issues.

share|improve this answer
3  
I agree with you, but you really didn't provide a good example of what to know about the Stack and Heap. I am interested in learning something new :) – Stan R. Oct 13 '09 at 16:22
5  
I agree with leppie, the distinction between a reference and value type is very important, but whether they end up on the stack or heap... you haven't convinced me why it would matter so much. – Meta-Knight Oct 13 '09 at 16:26
Well, I usually ask in general terms, and try to get the candidate to explain the difference to me. This has become one of my benchmarks on the level of understanding - I feel that somebody who knows how the memory allocation in .NET works will at least be willing and able to learn just about anything else required. I think you need to understand 1)The stack, in general terms, 2)The heap, in general terms, 3)How reference types work, 4)How value types work, 5)Argument passing using ref/out, and how it differs from by value, especially with reference types (not stack/heap, but semi-related) – Reed Copsey Oct 13 '09 at 16:26
@Meta-Knight: I agree, that's the practical application of this. However, I feel that it's nearly impossible to understand WHY reference/value type semantics work the way they do, and especially how the GC works properly, without understanding stack and heap. – Reed Copsey Oct 13 '09 at 16:29
3  
One dissenting voice is Eric Lippert of course, who thinks the distinction between reference and value types is much more than stack versus heap (which he describes as an implementation detail). blogs.msdn.com/ericlippert/archive/2009/04/27/… – MarkJ Oct 13 '09 at 16:49
show 10 more comments

The important distinction is between reference types and value types. It's not true that "value types go on the stack, reference types go on the heap". Jon Skeet has written about this and so has Eric Lippert.

share|improve this answer

We had a Claim Entity (business Object) which contained data for an entire claim. One of the requirements of the application was to create an audit trail of every single value changed by the user. In order to this without hitting the database twice we would maintain Original Claim Entity in the form and a Working Claim Entity. The Working Claim Entity would get updated when the user clicked Save and we would then compare the Original Claim Entity properties with corresponding Working Claim Entity properties to determine what changed. One day we noticed hey our compare method is never finding a difference. This is where my understanding of the Stack and Heap saved my rear end (specifically value types vs reference types). Because we needed to maintain to copies of the same object in memory the developer simply created two objects

Dim originalClaim As ClaimBE
Dim workingClaim As ClaimBE

then called the business layer method to return the claim object and assigned the same claimBE to both variables

originalClaim = BLL.GetClaim()
workingClaim = originalClaim

hence two reference types pointing to the same value type. Nightmare averted.

share|improve this answer
Your story has nothing to do stack vs. heap; it is only value vs. reference. As others have stated, value types have the distinction of being able to be stored on the stack, but that is where the relationship ends. Whether originalClaim and workingClaim were stored on the stack or heap is irrelevant to your story. – Gabe Nov 7 '10 at 6:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.