SYSTEM DEEP DIVE
Home
Figures
Prep index
Progress
JAVA INTERNALS, DRAWN LIVE
Three lines. One interview question.
Run them and watch the memory figure react. This is how every concept here works.
1
Person
a =
new
Person(
"Ada"
);
2
Person
b = a;
3
a =
null
;
STACK
a · Person
◆ ref
b · Person
◆ ref
HEAP
PERSON
◆
name = "Ada"
FIG 0
Nothing exists yet. Run line 1.
TRACK 01 · JAVA & SPRING
Full prep index →
Java & Spring internals are the first track of System Deep Dive; new tracks join once this one is complete. Progress saves on this device. The
prep index
shows the whole path.