I'm interested in how java organizes memory and executes code (like what gets put in the stack or the heap), from the start of main, to assigning variables, calling functions, passing parameters, returning values, instantiating objects, etc. Has anyone found a good, beginner-friendly article/reference on it? Preferably online, of course, but any suggestions or answers will be greatly appreciated. Thanks.
|
|
The canonical reference is the JVM spec. However, different JVMs can implement the spec in different ways. You can also check out the open source Java platform implementation, OpenJDK. |
||
|
|
|
|
Sun has a pretty good article on Java memory management on the web as a PDF: memorymanagement_whitepaper |
||
|
|
|
|
I don't know exactly how they execute their bytecode, but I found this link describing java's bytecode. I am not sure if it helps, but at least it's something to start on. Quote:
|
||
|
|
|
|
After more searching, I seem to have found a good article: http://www.artima.com/insidejvm/ed2/jvm.html |
||
|
|
