vote up 2 vote down star
1

In the below program

Class Main{

static string staticVariable = "Static Variable";
string instanceVariable = "Instance Variable";

public Main(){}

}

The instanceVariable will be stored insided the memory allocated for object instance. Where will the static variable go, Is it stored in the object instance itself or some where else? If its stored some where else, how are the memory locations connected?

flag

80% accept rate

3 Answers

vote up 9 vote down check

Static variable is stored on the heap, regardless of whether it's declared within a reference type or a value type. There is only one slot in total no matter how many instances are created.

This heap is separate from the normal garbage collected heap - it's known as a "high frequency heap", and there's one per application domain.

You will find the below resource useful Static variable demystified

link|flag
Nice extra info +1 :) – leppie Dec 3 '08 at 13:13
Glad you liked it. – rajesh pillai Dec 12 '08 at 15:20
vote up 2 vote down

Memory for static variables are normally held in some rooted (and hidden) object[]. This can be seen doing a !gcroot on the object in WinDbg (with SOS).

Just to add, these references can never be GC'ed (unless you null the field), as I discovered recently.

link|flag
vote up 0 vote down

For instance in C++ staic variables are allocated in global memory space with global variables. Compiler uses special naming convention to know that this variable belongs to the class.

link|flag

Your Answer

Get an OpenID
or

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