What is the actual memory place for static variables?

We have 3 segments in our memory:

  1. Stack Segment — contains local variables and Reference variables (variables that hold the address of an object in the heap).

  2. Heap Segment — contains all created objects in runtime, objects only plus their object attributes (instance variables).

  3. Code Segment — the segment where the actual compiled Java bytecodes resides when loaded. Static members (variables or methods) are called class members, meaning they reside where the class (bytecode) resides, which is in the Code Segment.


Static fields are initialised when a class is loaded and are discarded when the classloader for that class is unloaded. They can be cleaned up, even duplicated in another class loader.

For applications like those that use OSGi, static variables don't live for the whole life of the application. They can be reloaded many times.

How this is implement may be JVM dependent, but the Sun/Oracle JVM creates an "object" to hold the static fields for a class. This object is accessible via the Unsafe class which can also be used to examine this "objects" fields.


Static variable is allocated for the entire duration of program's execution, so neither stack nor heap are convenient for it.

In fact, static frames (i.e. the frames that hold the static variables) ARE allocated from the heap.

And they don't necessarily exist for the duration of a program's execution. For instance, static frames for classes that are dynamically loaded can be garbage collected if the parent classloader, all classes and all instances becomes unreachable.