What does Java look like in memory
java, memory
Solution
Helpful link
http://www.artima.com/insidejvm/ed2/jvm6.html
Problem
I am new to java and still learning. I got my head around inner and anonymous classes. Now I have a technical question about how java looks like in memory, when allocating objects, defining classes, etc. Like what does memory look like when I have a field that is an object that is defined in an outside class vs an inner class. Do static classes look different than non static? I just need a visual reference. Thanks Guys